rust/src/test/ui/issues/issue-5741.rs
2019-07-27 18:56:16 +03:00

9 lines
144 B
Rust

// run-pass
// pretty-expanded FIXME #23616
#![allow(while_true)]
#![allow(unreachable_code)]
pub fn main() {
return;
while true {};
}