mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +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!();
|
|
}
|