2017-05-17 12:19:44 +00:00
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:19:10
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | b || diverge();
2017-05-17 12:19:44 +00:00
| ^^^^^^^^^
|
2018-08-01 14:30:44 +00:00
= note: `-D clippy::diverging-sub-expression` implied by `-D warnings`
2017-05-17 12:19:44 +00:00
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:20:10
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | b || A.foo();
2017-05-17 12:19:44 +00:00
| ^^^^^^^
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:29:26
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 6 => true || return,
2017-05-17 12:19:44 +00:00
| ^^^^^^
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:30:26
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 7 => true || continue,
2017-05-17 12:19:44 +00:00
| ^^^^^^^^
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:33:26
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 3 => true || diverge(),
2017-05-17 12:19:44 +00:00
| ^^^^^^^^^
error: sub-expression diverges
2021-11-04 12:52:36 +00:00
--> $DIR/diverging_sub_expression.rs:36:30
|
LL | _ => true || panic!("boo"),
| ^^^^^^^^^^^^^
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2021-11-04 12:52:36 +00:00
error: sub-expression diverges
--> $DIR/diverging_sub_expression.rs:38:26
2017-05-17 12:19:44 +00:00
|
2018-12-27 15:57:55 +00:00
LL | _ => true || break,
2017-05-17 12:19:44 +00:00
| ^^^^^
2021-11-04 12:52:36 +00:00
error: aborting due to 7 previous errors
2018-01-16 16:06:27 +00:00