786f874c34
changelog: none Sorry, this is a big one. A lot of interrelated changes and I wanted to put the new utils to use to make sure they are somewhat battle-tested. We may want to divide some of the lint-specific refactoring commits into batches for smaller reviewing tasks. I could also split into more PRs. Introduces a bunch of new utils at `clippy_utils::macros::...`. Please read through the docs and give any feedback! I'm happy to introduce `MacroCall` and various functions to retrieve an instance. It feels like the missing puzzle piece. I'm also introducing `ExpnId` from rustc as "useful for Clippy too". `@rust-lang/clippy` Fixes #7843 by not parsing every node of macro implementations, at least the major offenders. I probably want to get rid of `is_expn_of` at some point.
34 lines
761 B
Rust
34 lines
761 B
Rust
#![allow(non_fmt_panics)]
|
|
|
|
macro_rules! assert_const {
|
|
($len:expr) => {
|
|
assert!($len > 0);
|
|
debug_assert!($len < 0);
|
|
};
|
|
}
|
|
fn main() {
|
|
assert!(true);
|
|
assert!(false);
|
|
assert!(true, "true message");
|
|
assert!(false, "false message");
|
|
|
|
let msg = "panic message";
|
|
assert!(false, "{}", msg.to_uppercase());
|
|
|
|
const B: bool = true;
|
|
assert!(B);
|
|
|
|
const C: bool = false;
|
|
assert!(C);
|
|
assert!(C, "C message");
|
|
|
|
debug_assert!(true);
|
|
// Don't lint this, since there is no better way for expressing "Only panic in debug mode".
|
|
debug_assert!(false); // #3948
|
|
assert_const!(3);
|
|
assert_const!(-1);
|
|
|
|
// Don't lint on this:
|
|
assert!(cfg!(feature = "hey") || cfg!(not(feature = "asdf")));
|
|
}
|