summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-stmt_macro_in_expr_macro.rs
blob: 528d0b28bf6d7296c45983b403037b5f5e871a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// run-pass
#![allow(dead_code)]
macro_rules! foo {
    () => {
        struct Bar;
        struct Baz;
    }
}

macro_rules! grault {
    () => {{
        foo!();
        struct Xyzzy;
        0
    }}
}

fn main() {
    let x = grault!();
    assert_eq!(x, 0);
}