rust/tests/ui/resolve/issue-49074.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
298 B
Rust
Raw Normal View History

// Check that unknown attribute error is shown even if there are unresolved macros.
#[marco_use] // typo
//~^ ERROR cannot find attribute `marco_use` in this scope
mod foo {
macro_rules! bar {
() => ();
}
}
fn main() {
bar!(); //~ ERROR cannot find macro `bar` in this scope
}