diff options
Diffstat (limited to 'tests/ui/unsized-locals/double-move.stderr')
-rw-r--r-- | tests/ui/unsized-locals/double-move.stderr | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/tests/ui/unsized-locals/double-move.stderr b/tests/ui/unsized-locals/double-move.stderr new file mode 100644 index 000000000..49b906bbe --- /dev/null +++ b/tests/ui/unsized-locals/double-move.stderr @@ -0,0 +1,86 @@ +warning: the feature `unsized_locals` is incomplete and may not be safe to use and/or cause compiler crashes + --> $DIR/double-move.rs:1:12 + | +LL | #![feature(unsized_locals, unsized_fn_params)] + | ^^^^^^^^^^^^^^ + | + = note: see issue #48055 <https://github.com/rust-lang/rust/issues/48055> for more information + = note: `#[warn(incomplete_features)]` on by default + +error[E0382]: use of moved value: `y` + --> $DIR/double-move.rs:21:22 + | +LL | let y = *x; + | - move occurs because `y` has type `str`, which does not implement the `Copy` trait +LL | drop_unsized(y); + | - value moved here +LL | drop_unsized(y); + | ^ value used here after move + | +note: consider changing this parameter type in function `drop_unsized` to borrow instead if owning the value isn't necessary + --> $DIR/double-move.rs:14:31 + | +LL | fn drop_unsized<T: ?Sized>(_: T) {} + | ------------ ^ this parameter takes ownership of the value + | | + | in this function + +error[E0382]: use of moved value: `x` + --> $DIR/double-move.rs:27:22 + | +LL | let _y = *x; + | -- value moved here +LL | drop_unsized(x); + | ^ value used here after move + | + = note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait + +error[E0382]: use of moved value: `*x` + --> $DIR/double-move.rs:33:18 + | +LL | let x = "hello".to_owned().into_boxed_str(); + | - move occurs because `x` has type `Box<str>`, which does not implement the `Copy` trait +LL | drop_unsized(x); + | - value moved here +LL | let _y = *x; + | ^^ value used here after move + +error[E0382]: use of moved value: `y` + --> $DIR/double-move.rs:40:9 + | +LL | let y = *x; + | - move occurs because `y` has type `str`, which does not implement the `Copy` trait +LL | y.foo(); + | ----- `y` moved due to this method call +LL | y.foo(); + | ^ value used here after move + | +note: `Foo::foo` takes ownership of the receiver `self`, which moves `y` + --> $DIR/double-move.rs:5:12 + | +LL | fn foo(self) -> String; + | ^^^^ + +error[E0382]: use of moved value: `x` + --> $DIR/double-move.rs:46:9 + | +LL | let _y = *x; + | -- value moved here +LL | x.foo(); + | ^ value used here after move + | + = note: move occurs because `*x` has type `str`, which does not implement the `Copy` trait + +error[E0382]: use of moved value: `*x` + --> $DIR/double-move.rs:52:18 + | +LL | let x = "hello".to_owned().into_boxed_str(); + | - move occurs because `x` has type `Box<str>`, which does not implement the `Copy` trait +LL | x.foo(); + | - value moved here +LL | let _y = *x; + | ^^ value used here after move + +error: aborting due to 6 previous errors; 1 warning emitted + +For more information about this error, try `rustc --explain E0382`. |