gccrs: Add execution test cases
[official-gcc.git] / gcc / testsuite / rust / execute / torture / macros28.rs
blobb011f92414945671f377740648dce6058de58ebf
1 macro_rules! t {
2     () => {
3         i32
4     };
7 fn id<T>(arg: T) -> T {
8     arg
11 fn main() -> i32 {
12     id::<t!()>(15) - 15