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