blob: a7af01e25b4e2899512d0d8cc0a00c91bf8c13d1 [file] [log] [blame]
// run-pass
// We shouldn't need to rebind a moved upvar as mut if it's already
// marked as mut
pub fn main() {
let mut x = 1;
let _thunk = Box::new(move|| { x = 2; });
//~^ WARN value assigned to `x` is never read
//~| WARN unused variable: `x`
}