2017-05-17 07:19:44 -05:00
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:19:10
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | b || diverge();
2017-05-17 07:19:44 -05:00
| ^^^^^^^^^
|
2018-08-01 09:30:44 -05:00
= note: `-D clippy::diverging-sub-expression` implied by `-D warnings`
2017-05-17 07:19:44 -05:00
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:20:10
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | b || A.foo();
2017-05-17 07:19:44 -05:00
| ^^^^^^^
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:29:26
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 6 => true || return,
2017-05-17 07:19:44 -05:00
| ^^^^^^
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:30:26
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 7 => true || continue,
2017-05-17 07:19:44 -05:00
| ^^^^^^^^
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:33:26
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 3 => true || diverge(),
2017-05-17 07:19:44 -05:00
| ^^^^^^^^^
error: sub-expression diverges
2021-11-04 07:52:36 -05:00
--> $DIR/diverging_sub_expression.rs:36:30
|
LL | _ => true || panic!("boo"),
| ^^^^^^^^^^^^^
|
2022-06-20 21:25:52 -05: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 07:52:36 -05:00
error: sub-expression diverges
--> $DIR/diverging_sub_expression.rs:38:26
2017-05-17 07:19:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | _ => true || break,
2017-05-17 07:19:44 -05:00
| ^^^^^
2021-11-04 07:52:36 -05:00
error: aborting due to 7 previous errors
2018-01-16 10:06:27 -06:00