os-rust/src/test/ui/try-block/try-block-in-while.stderr

12 lines
353 B
Text
Raw Normal View History

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
|
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`
|
= note: required by `from_ok`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.