rust/tests/ui/lint/unused/unused-macros.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
626 B
Rust
Raw Normal View History

#![deny(unused_macros)]
// To make sure we are not hitting this
#![deny(unused_macro_rules)]
// Most simple case
macro_rules! unused { //~ ERROR: unused macro definition
() => {};
}
// Test macros created by macros
macro_rules! create_macro {
() => {
macro_rules! m { //~ ERROR: unused macro definition
() => {};
}
};
}
create_macro!();
#[allow(unused_macros)]
mod bar {
// Test that putting the #[deny] close to the macro's definition
// works.
#[deny(unused_macros)]
macro_rules! unused { //~ ERROR: unused macro definition
() => {};
}
}
fn main() {}