]> git.proxmox.com Git - rustc.git/blob - tests/ui/try-block/try-block-in-while.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / try-block / try-block-in-while.rs
1 // compile-flags: --edition 2018
2
3 #![feature(try_blocks)]
4
5 fn main() {
6 while try { false } {}
7 //~^ ERROR a `try` block must
8 }