mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
15 lines
223 B
Rust
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() {}
|