aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macros/builtin/eager1.rs
blob: 7c6f6f95d61c8011aa482fa4d56fb1dfbccff403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-additional-options "-fdump-tree-gimple" }
#![feature(rustc_attrs)]

#[rustc_builtin_macro]
macro_rules! concat {
    () => {{}};
}

macro_rules! a {
    () => { "test" };
}

macro_rules! b {
    () => { "canary" };
}

fn main() {
    // { dg-final { scan-assembler {"test1canary"} } }
    let _ = concat!(a!(), 1, b!());
    // should not error
    concat!(a!(), true, b!(),);
}