2014-08-04 15:30:38 -05:00
|
|
|
#![forbid(unused_mut)]
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-31 10:23:42 -06:00
|
|
|
let mut x = 1;
|
2014-08-04 15:30:38 -05:00
|
|
|
//~^ ERROR: variable does not need to be mutable
|
2015-02-01 11:44:15 -06:00
|
|
|
move|| { println!("{}", x); };
|
2014-08-04 15:30:38 -05:00
|
|
|
}
|