blob: 0eb741ec6791dfb32eda22e7f83115bd9a7f7f4c [file]
macro_rules! m { ($($t:tt)*) => { $($t)* } }
fn main() {
m!($t); //~ ERROR cannot find macro parameter `$t` in this scope
}