2021-09-14 08:28:09 +00:00
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:19:5
|
2021-09-14 08:28:09 +00:00
|
|
|
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
|
|
LL | | panic!("qaqaq{:?}", a);
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: try: `assert!(a.is_empty(), "qaqaq{:?}", a);`
|
|
|
|
|
|
2021-10-12 14:23:05 +00:00
|
|
|
= note: `-D clippy::manual-assert` implied by `-D warnings`
|
2021-09-14 08:28:09 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:22:5
|
2021-09-14 08:28:09 +00:00
|
|
|
|
|
|
|
|
LL | / if !a.is_empty() {
|
|
|
|
LL | | panic!("qwqwq");
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: try: `assert!(a.is_empty(), "qwqwq");`
|
|
|
|
|
2021-09-30 11:06:42 +00:00
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:39:5
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() {
|
|
|
|
LL | | panic!("panic1");
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: try: `assert!(!b.is_empty(), "panic1");`
|
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:42:5
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() && a.is_empty() {
|
|
|
|
LL | | panic!("panic2");
|
|
|
|
LL | | }
|
2021-10-01 05:13:09 +00:00
|
|
|
| |_____^ help: try: `assert!(!(b.is_empty() && a.is_empty()), "panic2");`
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:45:5
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_empty() && !b.is_empty() {
|
|
|
|
LL | | panic!("panic3");
|
|
|
|
LL | | }
|
2021-10-01 05:13:09 +00:00
|
|
|
| |_____^ help: try: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");`
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:48:5
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
|
LL | / if b.is_empty() || a.is_empty() {
|
|
|
|
LL | | panic!("panic4");
|
|
|
|
LL | | }
|
2021-10-01 05:13:09 +00:00
|
|
|
| |_____^ help: try: `assert!(!(b.is_empty() || a.is_empty()), "panic4");`
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
error: only a `panic!` in `if`-then statement
|
2021-10-12 14:23:05 +00:00
|
|
|
--> $DIR/manual_assert.rs:51:5
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_empty() || !b.is_empty() {
|
|
|
|
LL | | panic!("panic5");
|
|
|
|
LL | | }
|
2021-10-01 05:13:09 +00:00
|
|
|
| |_____^ help: try: `assert!(!(a.is_empty() || !b.is_empty()), "panic5");`
|
2021-09-30 11:06:42 +00:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2021-09-14 08:28:09 +00:00
|
|
|
|