2025-08-20 14:02:39 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/5741
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(while_true)]
|
2014-04-14 21:00:31 +05:30
|
|
|
#![allow(unreachable_code)]
|
2013-08-17 08:37:42 -07:00
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() {
|
2013-05-21 13:15:48 -07:00
|
|
|
return;
|
2013-10-13 18:48:47 -07:00
|
|
|
while true {};
|
2013-05-21 13:15:48 -07:00
|
|
|
}
|