2018-07-21 20:59:44 -07:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2018-07-24 18:03:25 -07:00
|
|
|
#![feature(try_blocks)]
|
2017-03-06 18:16:57 -08:00
|
|
|
|
|
|
|
fn main() {
|
2020-04-14 17:45:00 +02:00
|
|
|
while try { false } {}
|
2020-09-02 10:40:56 +03:00
|
|
|
//~^ ERROR the trait bound `bool: Try` is not satisfied
|
2017-03-06 18:16:57 -08:00
|
|
|
}
|