2019-05-12 12:10:23 +02:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2019-09-18 08:37:41 +02:00
|
|
|
//! Used to test that certain lints don't trigger in imported external macros
|
|
|
|
|
2019-05-12 12:10:23 +02:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! foofoo {
|
|
|
|
() => {
|
|
|
|
loop {}
|
|
|
|
};
|
|
|
|
}
|
2019-09-18 08:37:41 +02:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! must_use_unit {
|
|
|
|
() => {
|
|
|
|
#[must_use]
|
|
|
|
fn foo() {}
|
|
|
|
};
|
|
|
|
}
|
2019-10-24 07:52:01 +02:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! try_err {
|
|
|
|
() => {
|
|
|
|
pub fn try_err_fn() -> Result<i32, i32> {
|
|
|
|
let err: i32 = 1;
|
|
|
|
// To avoid warnings during rustfix
|
|
|
|
if true {
|
|
|
|
Err(err)?
|
|
|
|
} else {
|
|
|
|
Ok(2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|