]> git.lizzy.rs Git - rust.git/blob - src/test/ui/empty/empty-macro-use.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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 }