-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enforce unused-must-use lint in macros #55569
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
I'm going to beta-nominate this to minimize the window in which |
Discussed backport during the T-compiler meeting. Accepted for backport. |
r=me but any idea why travis is upset? Is that spurious? |
r? @alexcrichton I suppose, who proposed this fix. I don't really have an opinion about whether it's right or not (seems a bit .. weird to me .. to isolate this particular lint...) |
r=me, but it looks like CI may be failing? It appears an unused result already snuck in! |
Actually relevant part of the log (cc @TimNN):
|
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
Looks like some tests may still be failing? |
I blessed all the UI tests but I guess there's more fallout... will fix
tonight.
…On Fri, Nov 2, 2018, 10:14 Alex Crichton ***@***.*** wrote:
Looks like some tests may still be failing?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#55569 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAC3n_llwYfO0sOnEtCgOViTl7sxCn1bks5urFNigaJpZM4YFuYC>
.
|
@bors: r+ |
📌 Commit 706a1cc has been approved by |
Yeah, |
enforce unused-must-use lint in macros Fixes #55516 by turning on the UNUSED_MUST_USE lint within macros.
☀️ Test successful - status-appveyor, status-travis |
Fixes #55516 by turning on the UNUSED_MUST_USE lint within macros.