blob: bc69df0f6755ca5c2365b93ffcf4b0f84df3d13e [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/5741
//@ run-pass
#![allow(while_true)]
#![allow(unreachable_code)]
pub fn main() {
return;
while true {};
}