2020-07-02 14:32:12 +09:00
|
|
|
//@ run-rustfix
|
|
|
|
|
|
2014-08-04 13:30:38 -07:00
|
|
|
#![forbid(unused_mut)]
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-31 17:23:42 +01:00
|
|
|
let mut x = 1;
|
2014-08-04 13:30:38 -07:00
|
|
|
//~^ ERROR: variable does not need to be mutable
|
2020-07-28 00:00:00 +00:00
|
|
|
(move|| { println!("{}", x); })();
|
2014-08-04 13:30:38 -07:00
|
|
|
}
|