2021-04-17 13:56:07 -05:00
|
|
|
error[E0277]: a `try` block must return `Result` or `Option` (or another type that implements `Try`)
|
2020-09-07 04:01:45 -05:00
|
|
|
--> $DIR/try-block-in-while.rs:6:17
|
2018-08-12 22:05:29 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | while try { false } {}
|
2021-04-17 13:56:07 -05:00
|
|
|
| ^^^^^ could not wrap the final value of the block as `bool` doesn't implement `Try`
|
2020-04-14 10:45:00 -05:00
|
|
|
|
|
2021-04-17 13:56:07 -05:00
|
|
|
= help: the trait `Try` is not implemented for `bool`
|
2018-08-12 22:05:29 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-04-14 10:45:00 -05:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|