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