blob: 0b516fd93a9ddd798e08dded182bfc5255173934 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// { dg-additional-options "-fdump-tree-gimple" }
#[rustc_builtin_macro]
macro_rules! concat {
() => {{}};
}
macro_rules! a {
() => { "test" };
}
macro_rules! b {
() => { "canary" };
}
fn main() {
// { dg-final { scan-tree-dump-times {"test1canary"} 1 gimple } }
let _ = concat!(a!(), 1, b!());
// should not error
concat!(a!(), true, b!(),);
}
|