rust/tests/ui/issues/issue-5741.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
144 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
#![allow(while_true)]
#![allow(unreachable_code)]
2013-08-17 15:37:42 +00:00
pub fn main() {
return;
while true {};
}