]> git.lizzy.rs Git - rust.git/blob - src/test/ui/for-loop-while/loop-break-cont-1.rs
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
[rust.git] / src / test / ui / for-loop-while / loop-break-cont-1.rs
1 // run-pass
2
3 pub fn main() {
4   let _i = 0_usize;
5   loop {
6     break;
7   }
8   assert!(true);
9 }