Open 0xLucqs opened 2 months ago
Checks for assert!(true) and assert!(false) calls.
Should probably be replaced by a panic!() or removed
assert!(false) assert!(true) const B: bool = false; assert!(B)
Sure
What it does
Checks for assert!(true) and assert!(false) calls.
Why is this bad?
Should probably be replaced by a panic!() or removed
Example