]> git.proxmox.com Git - rustc.git/blame - src/test/ui/try-block/try-block-in-while.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / try-block / try-block-in-while.rs
CommitLineData
b7449926 1// compile-flags: --edition 2018
83c7162d 2
b7449926 3#![feature(try_blocks)]
85aaf69f 4
ea8adc8c 5fn main() {
ba9703b0
XL
6 while try { false } {}
7 //~^ ERROR the trait bound `bool: std::ops::Try` is not satisfied
ea8adc8c 8}