summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr')
-rw-r--r--src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr b/src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr
new file mode 100644
index 000000000..ee7971691
--- /dev/null
+++ b/src/test/ui/moves/moves-based-on-type-distribute-copy-over-paren.stderr
@@ -0,0 +1,27 @@
+error[E0382]: borrow of moved value: `x`
+ --> $DIR/moves-based-on-type-distribute-copy-over-paren.rs:12:11
+ |
+LL | let x = "hi".to_string();
+ | - move occurs because `x` has type `String`, which does not implement the `Copy` trait
+LL |
+LL | let _y = Foo { f:x };
+ | - value moved here
+LL |
+LL | touch(&x);
+ | ^^ value borrowed here after move
+
+error[E0382]: borrow of moved value: `x`
+ --> $DIR/moves-based-on-type-distribute-copy-over-paren.rs:21:11
+ |
+LL | let x = "hi".to_string();
+ | - move occurs because `x` has type `String`, which does not implement the `Copy` trait
+LL |
+LL | let _y = Foo { f:(((x))) };
+ | ------- value moved here
+LL |
+LL | touch(&x);
+ | ^^ value borrowed here after move
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0382`.