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

96 lines
2.8 KiB
Text
Raw Normal View History

error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:32:5
|
LL | / if !a.is_empty() {
LL | | panic!("qaqaq{:?}", a);
LL | | }
| |_____^ help: try instead: `assert!(a.is_empty(), "qaqaq{:?}", a);`
|
= note: `-D clippy::manual-assert` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_assert)]`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:35:5
|
LL | / if !a.is_empty() {
LL | | panic!("qwqwq");
LL | | }
| |_____^ help: try instead: `assert!(a.is_empty(), "qwqwq");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:52:5
|
LL | / if b.is_empty() {
LL | | panic!("panic1");
LL | | }
| |_____^ help: try instead: `assert!(!b.is_empty(), "panic1");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:55:5
|
LL | / if b.is_empty() && a.is_empty() {
LL | | panic!("panic2");
LL | | }
| |_____^ help: try instead: `assert!(!(b.is_empty() && a.is_empty()), "panic2");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:58:5
|
LL | / if a.is_empty() && !b.is_empty() {
LL | | panic!("panic3");
LL | | }
| |_____^ help: try instead: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:61:5
|
LL | / if b.is_empty() || a.is_empty() {
LL | | panic!("panic4");
LL | | }
| |_____^ help: try instead: `assert!(!(b.is_empty() || a.is_empty()), "panic4");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:64:5
|
LL | / if a.is_empty() || !b.is_empty() {
LL | | panic!("panic5");
LL | | }
| |_____^ help: try instead: `assert!(!(a.is_empty() || !b.is_empty()), "panic5");`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:67:5
|
LL | / if a.is_empty() {
LL | | panic!("with expansion {}", one!())
LL | | }
| |_____^ help: try instead: `assert!(!a.is_empty(), "with expansion {}", one!());`
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:79: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");
|
error: only a `panic!` in `if`-then statement
2024-07-15 08:44:02 +00:00
--> tests/ui/manual_assert.rs:93:25
|
LL | const BAR: () = if N == 0 {
| _________________________^
LL | | panic!()
LL | | };
| |_________^ help: try instead: `assert!(!(N == 0), )`
error: aborting due to 10 previous errors