2025-06-15 18:48:03 +00:00
|
|
|
//@ build-pass
|
2024-11-16 13:32:13 +01:00
|
|
|
//@ needs-rustc-debug-assertions
|
|
|
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN -Zmir-enable-passes=+JumpThreading --crate-type=lib
|
|
|
|
|
|
|
|
|
|
pub fn fun(terminate: bool) {
|
|
|
|
|
while true {}
|
2025-06-15 18:48:03 +00:00
|
|
|
//~^ WARN denote infinite loops with `loop { ... }`
|
2024-11-16 13:32:13 +01:00
|
|
|
|
|
|
|
|
while !terminate {}
|
|
|
|
|
}
|