]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-43424.rs
Rollup merge of #96539 - tmandry:relnotes-1.61, r=Mark-Simulacrum
[rust.git] / src / test / ui / issues / issue-43424.rs
1 #![allow(unused)]
2
3 macro_rules! m {
4     ($attr_path: path) => {
5         #[$attr_path]
6         fn f() {}
7     }
8 }
9
10 m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
11
12 fn main() {}