rust-clippy/tests/ui/manual_assert.edition2021.stderr

125 lines
2.6 KiB
Text
Raw Normal View History

2021-09-14 08:28:09 +00:00
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:30:5
2021-09-14 08:28:09 +00:00
|
LL | / if !a.is_empty() {
LL | | panic!("qaqaq{:?}", a);
LL | | }
| |_____^
2021-09-14 08:28:09 +00:00
|
2021-10-12 14:23:05 +00:00
= note: `-D clippy::manual-assert` implied by `-D warnings`
help: try instead
|
LL | assert!(a.is_empty(), "qaqaq{:?}", a);
|
2021-09-14 08:28:09 +00:00
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:33:5
2021-09-14 08:28:09 +00:00
|
LL | / if !a.is_empty() {
LL | | panic!("qwqwq");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(a.is_empty(), "qwqwq");
|
2021-09-14 08:28:09 +00:00
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:50:5
|
LL | / if b.is_empty() {
LL | | panic!("panic1");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!b.is_empty(), "panic1");
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:53:5
|
LL | / if b.is_empty() && a.is_empty() {
LL | | panic!("panic2");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!(b.is_empty() && a.is_empty()), "panic2");
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:56:5
|
LL | / if a.is_empty() && !b.is_empty() {
LL | | panic!("panic3");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!(a.is_empty() && !b.is_empty()), "panic3");
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:59:5
|
LL | / if b.is_empty() || a.is_empty() {
LL | | panic!("panic4");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!(b.is_empty() || a.is_empty()), "panic4");
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:62:5
|
LL | / if a.is_empty() || !b.is_empty() {
LL | | panic!("panic5");
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!(a.is_empty() || !b.is_empty()), "panic5");
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:65:5
|
LL | / if a.is_empty() {
LL | | panic!("with expansion {}", one!())
LL | | }
| |_____^
|
help: try instead
|
LL | assert!(!a.is_empty(), "with expansion {}", one!());
|
error: only a `panic!` in `if`-then statement
2022-10-02 13:25:50 +00:00
--> $DIR/manual_assert.rs:72:5
|
2022-10-02 13:25:50 +00:00
LL | / if a > 2 {
LL | | // comment
LL | | /* this is a
LL | | multiline
... |
LL | | panic!("panic with comment") // comment after `panic!`
LL | | }
| |_____^
|
help: try instead
|
2022-10-02 13:25:50 +00:00
LL | assert!(!(a > 2), "panic with comment");
|
error: aborting due to 9 previous errors
2021-09-14 08:28:09 +00:00