Skip to content
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

unused_mut wrongly warning when using a macro #77060

Closed
jeromegn opened this issue Sep 22, 2020 · 2 comments
Closed

unused_mut wrongly warning when using a macro #77060

jeromegn opened this issue Sep 22, 2020 · 2 comments
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug.

Comments

@jeromegn
Copy link

Reproduction:

use tokio::select;
use futures::future;

#[tokio::main]
async fn main() {
    let v = async move {
        let ok = future::ready(1);
        tokio::pin!(ok);
        select! {
            mut a = &mut ok => {
                a += 1;
                a
            }
        }
    }.await;
    println!("v: {}", v);
}

I expected to see this happen: no warnings.

Instead, this happened:

warning: variable does not need to be mutable
  --> src/main.rs:10:13
   |
10 |             mut a = &mut ok => {
   |             ----^
   |             |
   |             help: remove this `mut`
   |
   = note: `#[warn(unused_mut)]` on by default

warning: 1 warning emitted

If I follow the advice here, it fails to compile with:

error[E0384]: cannot assign twice to immutable variable `a`
  --> src/main.rs:11:17
   |
10 |             a = &mut ok => {
   |             -
   |             |
   |             first assignment to `a`
   |             help: make this binding mutable: `mut a`
11 |                 a += 1;
   |                 ^^^^^^ cannot assign twice to immutable variable

error: aborting due to previous error

This is possibly related to #60643, but I'm not sure. This one is not in a macro itself, it's using a macro.

Meta

rustc --version --verbose:

rustc 1.45.0 (5c1f21c3b 2020-07-13)
binary: rustc
commit-hash: 5c1f21c3b82297671ad3ae1e8c942d2ca92e84f2
commit-date: 2020-07-13
host: x86_64-unknown-linux-gnu
release: 1.45.0
LLVM version: 10.0

(but this has been happening on every version I've tried for over a year)

@jeromegn jeromegn added the C-bug Category: This is a bug. label Sep 22, 2020
@SNCPlay42
Copy link
Contributor

SNCPlay42 commented Sep 22, 2020

Looking at the source, tokio::select expands mut a (as $bind) at two different locations and the mutability is indeed unnesscessary at one of them:

match &out {
    $bind => {}
    _ => continue,
}

I'd consider this a tokio bug. There should be a #[allow(unused_mut)] on the match (like there already is a #[allow(unused_variables)]).

@jyn514 jyn514 added the A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. label Sep 22, 2020
@Dylan-DPC
Copy link
Member

This code doesn't emit the error any more

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug.
Projects
None yet
Development

No branches or pull requests

4 participants