mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
10 lines
228 B
Rust
10 lines
228 B
Rust
//@ known-bug: #131451
|
|
//@ needs-rustc-debug-assertions
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN -Zmir-enable-passes=+JumpThreading --crate-type=lib
|
|
|
|
pub fn fun(terminate: bool) {
|
|
while true {}
|
|
|
|
while !terminate {}
|
|
}
|