2014-12-15 23:24:33 +00:00
|
|
|
// Test that move restrictions are enforced on overloaded unary operations
|
|
|
|
|
2014-12-22 17:04:23 +00:00
|
|
|
use std::ops::Not;
|
|
|
|
|
2015-01-03 03:56:24 +00:00
|
|
|
fn move_then_borrow<T: Not<Output=T> + Clone>(x: T) {
|
2014-12-15 23:24:33 +00:00
|
|
|
!x;
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
x.clone(); //~ ERROR: borrow of moved value
|
2014-12-15 23:24:33 +00:00
|
|
|
}
|
|
|
|
|
2015-01-03 03:56:24 +00:00
|
|
|
fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) {
|
2014-12-15 23:24:33 +00:00
|
|
|
let m = &x;
|
|
|
|
let n = &mut y;
|
|
|
|
|
|
|
|
!x; //~ ERROR: cannot move out of `x` because it is borrowed
|
|
|
|
|
|
|
|
!y; //~ ERROR: cannot move out of `y` because it is borrowed
|
2018-11-05 13:36:58 +00:00
|
|
|
use_mut(n); use_imm(m);
|
2014-12-15 23:24:33 +00:00
|
|
|
}
|
2015-01-03 03:56:24 +00:00
|
|
|
fn illegal_dereference<T: Not<Output=T>>(mut x: T, y: T) {
|
2014-12-15 23:24:33 +00:00
|
|
|
let m = &mut x;
|
|
|
|
let n = &y;
|
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
!*m; //~ ERROR: cannot move out of `*m`
|
2014-12-15 23:24:33 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
!*n; //~ ERROR: cannot move out of `*n`
|
2018-11-05 13:36:58 +00:00
|
|
|
use_imm(n); use_mut(m);
|
2014-12-15 23:24:33 +00:00
|
|
|
}
|
|
|
|
fn main() {}
|
2018-11-05 13:36:58 +00:00
|
|
|
|
|
|
|
fn use_mut<T>(_: &mut T) { }
|
|
|
|
fn use_imm<T>(_: &T) { }
|