2022-04-01 04:28:59 +00:00
|
|
|
#![allow(non_fmt_panics, clippy::needless_bool)]
|
2021-02-02 19:24:42 +00:00
|
|
|
|
2019-02-05 18:06:08 +00:00
|
|
|
macro_rules! assert_const {
|
|
|
|
($len:expr) => {
|
|
|
|
assert!($len > 0);
|
|
|
|
debug_assert!($len < 0);
|
|
|
|
};
|
|
|
|
}
|
2018-12-25 22:29:03 +00:00
|
|
|
fn main() {
|
|
|
|
assert!(true);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(true)` will be optimized out by the compiler
|
2018-12-25 22:29:03 +00:00
|
|
|
assert!(false);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(false)` should probably be replaced
|
2019-01-09 18:30:47 +00:00
|
|
|
assert!(true, "true message");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(true)` will be optimized out by the compiler
|
2019-01-09 18:30:47 +00:00
|
|
|
assert!(false, "false message");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(false, ..)` should probably be replaced
|
2019-01-09 18:30:47 +00:00
|
|
|
|
2019-10-07 18:40:05 +00:00
|
|
|
let msg = "panic message";
|
2021-10-23 07:42:52 +00:00
|
|
|
assert!(false, "{}", msg.to_uppercase());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(false, ..)` should probably be replaced
|
2019-10-07 18:40:05 +00:00
|
|
|
|
2019-01-09 18:30:47 +00:00
|
|
|
const B: bool = true;
|
|
|
|
assert!(B);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(true)` will be optimized out by the compiler
|
2019-01-09 18:30:47 +00:00
|
|
|
|
|
|
|
const C: bool = false;
|
|
|
|
assert!(C);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(false)` should probably be replaced
|
2019-10-05 14:45:02 +00:00
|
|
|
assert!(C, "C message");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `assert!(false, ..)` should probably be replaced
|
2019-02-05 18:06:08 +00:00
|
|
|
|
|
|
|
debug_assert!(true);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `debug_assert!(true)` will be optimized out by the compiler
|
2019-04-18 09:48:19 +00:00
|
|
|
// Don't lint this, since there is no better way for expressing "Only panic in debug mode".
|
|
|
|
debug_assert!(false); // #3948
|
2019-02-05 18:06:08 +00:00
|
|
|
assert_const!(3);
|
|
|
|
assert_const!(-1);
|
2021-07-01 16:17:38 +00:00
|
|
|
|
2022-04-01 04:28:59 +00:00
|
|
|
// Don't lint if based on `cfg!(..)`:
|
2021-07-01 16:17:38 +00:00
|
|
|
assert!(cfg!(feature = "hey") || cfg!(not(feature = "asdf")));
|
2022-04-01 04:28:59 +00:00
|
|
|
|
|
|
|
let flag: bool = cfg!(not(feature = "asdf"));
|
|
|
|
assert!(flag);
|
|
|
|
|
|
|
|
const CFG_FLAG: &bool = &cfg!(feature = "hey");
|
|
|
|
assert!(!CFG_FLAG);
|
2023-12-15 19:52:38 +00:00
|
|
|
|
|
|
|
const _: () = assert!(true);
|
|
|
|
//~^ ERROR: `assert!(true)` will be optimized out by the compiler
|
|
|
|
|
|
|
|
// Don't lint if the value is dependent on a defined constant:
|
|
|
|
const N: usize = 1024;
|
|
|
|
const _: () = assert!(N.is_power_of_two());
|
2018-12-25 22:29:03 +00:00
|
|
|
}
|