mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
4babfae9cb
Make if_then_else handle situation of cond.kind = ExprKind::DropTemps(ExprKind::Binary(BinOpKind::And || BinOpKind::Or, left, right), ..) =
60 lines
1.8 KiB
Text
60 lines
1.8 KiB
Text
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:19:5
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
LL | | panic!("qaqaq{:?}", a);
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(a.is_empty(), "qaqaq{:?}", a);`
|
|
|
|
|
= note: `-D clippy::if-then-panic` implied by `-D warnings`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:22:5
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
LL | | panic!("qwqwq");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(a.is_empty(), "qwqwq");`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:39:5
|
|
|
|
|
LL | / if b.is_empty() {
|
|
LL | | panic!("panic1");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(!b.is_empty(), "panic1");`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:42:5
|
|
|
|
|
LL | / if b.is_empty() && a.is_empty() {
|
|
LL | | panic!("panic2");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(!b.is_empty() || !a.is_empty(), "panic2");`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:45:5
|
|
|
|
|
LL | / if a.is_empty() && !b.is_empty() {
|
|
LL | | panic!("panic3");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(!a.is_empty() || b.is_empty(), "panic3");`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:48:5
|
|
|
|
|
LL | / if b.is_empty() || a.is_empty() {
|
|
LL | | panic!("panic4");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(!b.is_empty() && !a.is_empty(), "panic4");`
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
--> $DIR/if_then_panic.rs:51:5
|
|
|
|
|
LL | / if a.is_empty() || !b.is_empty() {
|
|
LL | | panic!("panic5");
|
|
LL | | }
|
|
| |_____^ help: try: `assert!(!a.is_empty() && b.is_empty(), "panic5");`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|