mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 11:13:43 +00:00
9 lines
157 B
Rust
9 lines
157 B
Rust
|
// aux-build:two_macros.rs
|
||
|
|
||
|
#[macro_use(macro_two, no_way)] //~ ERROR imported macro not found
|
||
|
extern crate two_macros;
|
||
|
|
||
|
pub fn main() {
|
||
|
macro_two!();
|
||
|
}
|