1 2 3 4 5 6 7 8 9 10 11 12
#![allow(unused)] macro_rules! m { ($attr_path: path) => { #[$attr_path] fn f() {} } } m!(inline<u8>); //~ ERROR: unexpected generic arguments in path fn main() {}