]> git.proxmox.com Git - rustc.git/blob - src/test/ui/try-block/try-block-in-while.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / 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 the trait bound `bool: Try` is not satisfied
8 }