mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
218 B
Rust
14 lines
218 B
Rust
// run-pass
|
|
// aux-build:two_macros-rpass.rs
|
|
|
|
#![warn(unused_attributes)]
|
|
|
|
#[macro_use]
|
|
#[macro_use()] //~ WARNING unused attribute
|
|
extern crate two_macros_rpass;
|
|
|
|
pub fn main() {
|
|
macro_one!();
|
|
macro_two!();
|
|
}
|