1 // rustfmt-edition: 2018 2 3 macro_rules! token { 4 ($t:tt) => {}; 5 } 6 main()7 fn main() { 8 token!(dyn); 9 token!(dyn ); 10 } 11