2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: the trait bound `bool: Try` is not satisfied
|
2020-09-07 10:01:45 +01:00
|
|
|
--> $DIR/try-block-in-while.rs:6:17
|
2018-08-12 20:05:29 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | while try { false } {}
|
2020-09-07 10:01:45 +01:00
|
|
|
| ^^^^^ the trait `Try` is not implemented for `bool`
|
2020-04-14 17:45:00 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: required by `from_ok`
|
2018-08-12 20:05:29 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-04-14 17:45:00 +02:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|