rust-clippy/tests/ui/auxiliary/macro_rules.rs

10 lines
175 B
Rust
Raw Normal View History

2019-05-12 10:10:23 +00:00
#![allow(dead_code)]
/// Used to test that certain lints don't trigger in imported external macros
#[macro_export]
macro_rules! foofoo {
() => {
loop {}
};
}