rust/src/test/ui/unused/unused-mut-warning-captured-var.rs

8 lines
145 B
Rust
Raw Normal View History

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
move|| { println!("{}", x); };
2014-08-04 15:30:38 -05:00
}