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