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-11 16:17:59 +00:00
|
|
|
| |_____^ help: try instead: `assert!(a.is_empty(), "qaqaq{:?}", a);`
|
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`
|
2021-09-28 17:03:12 +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-11 16:17:59 +00:00
|
|
|
| |_____^ help: try instead: `assert!(!a.is_empty(), "with expansion {}", one!());`
|
2022-10-06 07:44:38 +00:00
|
|
|
|
2022-10-23 13:18:45 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2021-09-28 17:03:12 +00:00
|
|
|
|