rust/tests/ui/lint/unused/unused-mut-warning-captured-var.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

17 lines
388 B
Plaintext

error: variable does not need to be mutable
--> $DIR/unused-mut-warning-captured-var.rs:6:9
|
LL | let mut x = 1;
| ----^
| |
| help: remove this `mut`
|
note: the lint level is defined here
--> $DIR/unused-mut-warning-captured-var.rs:3:11
|
LL | #![forbid(unused_mut)]
| ^^^^^^^^^^
error: aborting due to 1 previous error