summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/issue-46099-move-in-macro.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/issue-46099-move-in-macro.stderr')
-rw-r--r--src/test/ui/moves/issue-46099-move-in-macro.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/moves/issue-46099-move-in-macro.stderr b/src/test/ui/moves/issue-46099-move-in-macro.stderr
new file mode 100644
index 000000000..baa87e3e9
--- /dev/null
+++ b/src/test/ui/moves/issue-46099-move-in-macro.stderr
@@ -0,0 +1,11 @@
+error[E0382]: use of moved value: `b`
+ --> $DIR/issue-46099-move-in-macro.rs:14:12
+ |
+LL | let b = Box::new(true);
+ | - move occurs because `b` has type `Box<bool>`, which does not implement the `Copy` trait
+LL | test!({b});
+ | ^ value used here after move
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0382`.