]> git.lizzy.rs Git - rust.git/blob - src/test/ui/missing/missing-macro-use.rs
Merge commit '7b73b60faca71d01d900e49831fcb84553e93019' into sync-rustfmt
[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 }