summary refs log tree commit diff
path: root/src/test/ui/try-block/try-block-in-while.stderr
blob: 75a4e8d065cab65dcd42b632014f1ff47ac30610 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: the trait bound `bool: Try` is not satisfied
  --> $DIR/try-block-in-while.rs:6:17
   |
LL |     while try { false } {}
   |                 ^^^^^ 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`.