rust/tests/ui/macros/genercs-in-path-with-prettry-hir.rs
2024-05-11 00:13:27 +08:00

15 lines
223 B
Rust

//@ compile-flags: -Zunpretty=hir
// issue#97006
macro_rules! m {
($attr_path: path) => {
#[$attr_path]
fn f() {}
}
}
m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
fn main() {}