| // Test that move restrictions are enforced on overloaded unary operations |
| fn move_then_borrow<T: Not<Output=T> + Clone>(x: T) { |
| x.clone(); //~ ERROR: borrow of moved value |
| fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) { |
| !x; //~ ERROR: cannot move out of `x` because it is borrowed |
| !y; //~ ERROR: cannot move out of `y` because it is borrowed |
| fn illegal_dereference<T: Not<Output=T>>(mut x: T, y: T) { |
| !*m; //~ ERROR: cannot move out of `*m` |
| !*n; //~ ERROR: cannot move out of `*n` |
| fn use_mut<T>(_: &mut T) { } |