blob: b3f76d8b049928cd01f0fb5e910f242a9d24f92a [file] [log] [blame]
#![allow(unused)]
macro_rules! m {
($attr_path: path) => {
#[$attr_path]
fn f() {}
}
}
m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
fn main() {}