]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-49074.rs
dbd96e96191e12991a01f24107c34a1e86637dda
[rust.git] / src / test / ui / issues / issue-49074.rs
1 // Check that unknown attribute error is shown even if there are unresolved macros.
2
3 #[marco_use] // typo
4 //~^ ERROR The attribute `marco_use` is currently unknown to the compiler
5 mod foo {
6     macro_rules! bar {
7         () => ();
8     }
9 }
10
11 fn main() {
12    bar!();
13 }