]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/assign-non-lval-derefmut.rs
Add 'compiler/rustc_smir/' from commit '9abcb5c7b574cf316eb23d3f469187bb86ba3019'
[rust.git] / src / test / ui / typeck / assign-non-lval-derefmut.rs
1 // run-rustfix
2
3 fn main() {
4     let x = std::sync::Mutex::new(1usize);
5     x.lock().unwrap() = 2;
6     //~^ ERROR invalid left-hand side of assignment
7     x.lock().unwrap() += 1;
8     //~^ ERROR binary assignment operation `+=` cannot be applied to type `MutexGuard<'_, usize>`
9
10     let mut y = x.lock().unwrap();
11     y = 2;
12     //~^ ERROR mismatched types
13     y += 1;
14     //~^ ERROR binary assignment operation `+=` cannot be applied to type `MutexGuard<'_, usize>`
15 }