2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2020-07-02 14:32:12 +09:00
|
|
|
|
|
|
|
|
#![forbid(unused_mut)]
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let x = 1;
|
|
|
|
|
//~^ ERROR: variable does not need to be mutable
|
2020-07-28 00:00:00 +00:00
|
|
|
(move|| { println!("{}", x); })();
|
2020-07-02 14:32:12 +09:00
|
|
|
}
|