about summary refs log tree commit diff
path: root/tests/ui/issues/issue-11958.rs
blob: 9185c5158af6476c3a410f69ed29da2bbfd02ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ 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`
}