Files
rust/tests/ui/try-block/try-block-in-while.rs
2025-04-10 09:56:37 +02:00

9 lines
119 B
Rust

//@ edition: 2018
#![feature(try_blocks)]
fn main() {
while try { false } {}
//~^ ERROR a `try` block must
}