]> git.lizzy.rs Git - rust.git/blob - src/test/ui/missing/missing-macro-use.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / missing / missing-macro-use.rs
1 // aux-build:two_macros.rs
2
3 extern crate two_macros;
4
5 pub fn main() {
6     macro_two!();
7     //~^ ERROR cannot find macro `macro_two` in this scope
8 }