diff options
Diffstat (limited to 'tests/ui/moves/issue-46099-move-in-macro.rs')
-rw-r--r-- | tests/ui/moves/issue-46099-move-in-macro.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/moves/issue-46099-move-in-macro.rs b/tests/ui/moves/issue-46099-move-in-macro.rs new file mode 100644 index 000000000..576fe1f4c --- /dev/null +++ b/tests/ui/moves/issue-46099-move-in-macro.rs @@ -0,0 +1,15 @@ +// Regression test for issue #46099 +// Tests that we don't emit spurious +// 'value moved in previous iteration of loop' message + +macro_rules! test { + ($v:expr) => {{ + drop(&$v); + $v + }} +} + +fn main() { + let b = Box::new(true); + test!({b}); //~ ERROR use of moved value +} |