summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/issue-46099-move-in-macro.rs
blob: 576fe1f4c89052e47edd8d3977b3f2250c8d1796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}