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