mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-24 14:17:41 +00:00
16 lines
183 B
Rust
16 lines
183 B
Rust
// run-pass
|
|
|
|
fn main() {
|
|
let x = 1;
|
|
|
|
#[cfg(FALSE)]
|
|
if false {
|
|
x = 2;
|
|
} else if true {
|
|
x = 3;
|
|
} else {
|
|
x = 4;
|
|
}
|
|
assert_eq!(x, 1);
|
|
}
|