./x.py test src/test/ui --stage 1 --bless -i --compare-mode=nll
This commit is contained in:
parent
de0554805c
commit
02fe6a7ba6
@ -20,7 +20,7 @@ error[E0382]: use of moved value: `line2`
|
||||
LL | let _moved = (line2.origin, line2.middle);
|
||||
| ------------ value moved here
|
||||
LL | line2.consume(); //[ast]~ ERROR use of partially moved value: `line2` [E0382]
|
||||
| ^^^^^ value used here after move
|
||||
| ^^^^^ value used here after partial move
|
||||
|
|
||||
= note: move occurs because `line2.middle` has type `Point`, which does not implement the `Copy` trait
|
||||
|
||||
|
@ -5,7 +5,7 @@ LL | Some(right) => consume(right),
|
||||
| ----- value moved here
|
||||
...
|
||||
LL | consume(node) + r //~ ERROR use of partially moved value: `node`
|
||||
| ^^^^ value used here after move
|
||||
| ^^^^ value used here after partial move
|
||||
|
|
||||
= note: move occurs because value has type `std::boxed::Box<List>`, which does not implement the `Copy` trait
|
||||
|
||||
|
@ -5,7 +5,7 @@ LL | Foo {f} => {}
|
||||
| - value moved here
|
||||
...
|
||||
LL | touch(&x); //~ ERROR use of partially moved value: `x`
|
||||
| ^^ value borrowed here after move
|
||||
| ^^ value borrowed here after partial move
|
||||
|
|
||||
= note: move occurs because `x.f` has type `std::string::String`, which does not implement the `Copy` trait
|
||||
|
||||
|
@ -25,7 +25,7 @@ LL | (Some(y), ()) => {},
|
||||
| - value moved here
|
||||
...
|
||||
LL | x; //~ ERROR use of partially moved value
|
||||
| ^ value used here after move
|
||||
| ^ value used here after partial move
|
||||
|
|
||||
= note: move occurs because value has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait
|
||||
|
||||
|
@ -5,7 +5,7 @@ LL | let y = *x;
|
||||
| -- value moved here
|
||||
LL | drop_unsized(y);
|
||||
LL | println!("{}", &x);
|
||||
| ^^ value borrowed here after move
|
||||
| ^^ value borrowed here after partial move
|
||||
|
|
||||
= note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait
|
||||
|
||||
@ -27,7 +27,7 @@ LL | let y = *x;
|
||||
| -- value moved here
|
||||
LL | y.foo();
|
||||
LL | println!("{}", &x);
|
||||
| ^^ value borrowed here after move
|
||||
| ^^ value borrowed here after partial move
|
||||
|
|
||||
= note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait
|
||||
|
||||
@ -48,7 +48,7 @@ error[E0382]: borrow of moved value: `x`
|
||||
LL | x.foo();
|
||||
| - value moved here
|
||||
LL | println!("{}", &x);
|
||||
| ^^ value borrowed here after move
|
||||
| ^^ value borrowed here after partial move
|
||||
|
|
||||
= note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait
|
||||
|
||||
|
@ -14,7 +14,7 @@ error[E0382]: use of moved value: `x`
|
||||
LL | let _y = *x;
|
||||
| -- value moved here
|
||||
LL | drop_unsized(x); //~ERROR use of moved value
|
||||
| ^ value used here after move
|
||||
| ^ value used here after partial move
|
||||
|
|
||||
= note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user