]> git.lizzy.rs Git - rust.git/blob - src/test/ui/empty/empty-macro-use.rs
Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen
[rust.git] / src / test / ui / empty / empty-macro-use.rs
1 // aux-build:two_macros.rs
2
3 #[macro_use()]
4 extern crate two_macros;
5
6 pub fn main() {
7     macro_two!();
8     //~^ ERROR cannot find macro
9 }