rust/tests/ui/issues/issue-43424.rs
2023-01-11 09:32:08 +00:00

13 lines
191 B
Rust

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