mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
220 B
Rust
14 lines
220 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!();
|
|
}
|