65 lines
2.4 KiB
Rust
65 lines
2.4 KiB
Rust
|
// revisions: ast nll
|
||
|
|
||
|
// Since we are testing nll migration explicitly as a separate
|
||
|
// revision, don't worry about the --compare-mode=nll on this test.
|
||
|
|
||
|
// ignore-compare-mode-nll
|
||
|
|
||
|
//[ast]compile-flags: -Z borrowck=ast
|
||
|
//[nll]compile-flags: -Z borrowck=migrate -Z two-phase-borrows
|
||
|
|
||
|
#![warn(unused)]
|
||
|
#[derive(Debug)]
|
||
|
struct S(i32);
|
||
|
|
||
|
type Tuple = (S, i32);
|
||
|
struct Tpair(S, i32);
|
||
|
struct Spair { x: S, y: i32 }
|
||
|
|
||
|
fn main() {
|
||
|
{
|
||
|
let t: Tuple = (S(0), 0);
|
||
|
drop(t);
|
||
|
t.0 = S(1);
|
||
|
//[ast]~^ ERROR cannot assign to field `t.0` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR assign to part of moved value: `t` [E0382]
|
||
|
//[nll]~| ERROR cannot assign to `t.0`, as `t` is not declared as mutable [E0594]
|
||
|
t.1 = 2;
|
||
|
//[ast]~^ ERROR cannot assign to field `t.1` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR cannot assign to `t.1`, as `t` is not declared as mutable [E0594]
|
||
|
println!("{:?} {:?}", t.0, t.1);
|
||
|
//[ast]~^ ERROR use of moved value: `t.0` [E0382]
|
||
|
//[ast]~| ERROR use of moved value: `t.1` [E0382]
|
||
|
}
|
||
|
|
||
|
{
|
||
|
let u: Tpair = Tpair(S(0), 0);
|
||
|
drop(u);
|
||
|
u.0 = S(1);
|
||
|
//[ast]~^ ERROR cannot assign to field `u.0` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR assign to part of moved value: `u` [E0382]
|
||
|
//[nll]~| ERROR cannot assign to `u.0`, as `u` is not declared as mutable [E0594]
|
||
|
u.1 = 2;
|
||
|
//[ast]~^ ERROR cannot assign to field `u.1` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR cannot assign to `u.1`, as `u` is not declared as mutable [E0594]
|
||
|
println!("{:?} {:?}", u.0, u.1);
|
||
|
//[ast]~^ ERROR use of moved value: `u.0` [E0382]
|
||
|
//[ast]~| ERROR use of moved value: `u.1` [E0382]
|
||
|
}
|
||
|
|
||
|
{
|
||
|
let v: Spair = Spair { x: S(0), y: 0 };
|
||
|
drop(v);
|
||
|
v.x = S(1);
|
||
|
//[ast]~^ ERROR cannot assign to field `v.x` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR assign to part of moved value: `v` [E0382]
|
||
|
//[nll]~| ERROR cannot assign to `v.x`, as `v` is not declared as mutable [E0594]
|
||
|
v.y = 2;
|
||
|
//[ast]~^ ERROR cannot assign to field `v.y` of immutable binding [E0594]
|
||
|
//[nll]~^^ ERROR cannot assign to `v.y`, as `v` is not declared as mutable [E0594]
|
||
|
println!("{:?} {:?}", v.x, v.y);
|
||
|
//[ast]~^ ERROR use of moved value: `v.x` [E0382]
|
||
|
//[ast]~| ERROR use of moved value: `v.y` [E0382]
|
||
|
}
|
||
|
}
|