2021-09-28 17:03:12 +00:00
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:31:5
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
|
|
LL | | panic!("qaqaq{:?}", a);
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
= note: `-D clippy::manual-assert` implied by `-D warnings`
|
2022-10-06 07:44:38 +00:00
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(a.is_empty(), "qaqaq{:?}", a);
|
|
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:34:5
|
2021-09-28 17:03:12 +00:00
|
|
|
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
|
|
LL | | panic!("qwqwq");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(a.is_empty(), "qwqwq");
|
|
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:51:5
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() {
|
|
|
|
LL | | panic!("panic1");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!b.is_empty(), "panic1");
|
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:54:5
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() && a.is_empty() {
|
|
|
|
LL | | panic!("panic2");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!(b.is_empty() && a.is_empty()), "panic2");
|
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:57:5
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_empty() && !b.is_empty() {
|
|
|
|
LL | | panic!("panic3");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!(a.is_empty() && !b.is_empty()), "panic3");
|
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:60:5
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() || a.is_empty() {
|
|
|
|
LL | | panic!("panic4");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!(b.is_empty() || a.is_empty()), "panic4");
|
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:63:5
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_empty() || !b.is_empty() {
|
|
|
|
LL | | panic!("panic5");
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!(a.is_empty() || !b.is_empty()), "panic5");
|
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
error: only a `panic!` in `if`-then statement
|
2022-10-06 07:44:38 +00:00
|
|
|
--> $DIR/manual_assert.rs:66:5
|
2022-02-10 17:40:06 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_empty() {
|
|
|
|
LL | | panic!("with expansion {}", one!())
|
|
|
|
LL | | }
|
2022-10-06 07:44:38 +00:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!a.is_empty(), "with expansion {}", one!());
|
|
|
|
|
|
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
|
|
|
--> $DIR/manual_assert.rs:73:5
|
|
|
|
|
|
|
|
|
LL | / if a > 2 {
|
|
|
|
LL | | // comment
|
|
|
|
LL | | /* this is a
|
|
|
|
LL | | multiline
|
|
|
|
... |
|
|
|
|
LL | | panic!("panic with comment") // comment after `panic!`
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try instead
|
|
|
|
|
|
|
|
|
LL | assert!(!(a > 2), "panic with comment");
|
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
|
2022-10-06 07:44:38 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2021-09-28 17:03:12 +00:00
|
|
|
|