This commit is contained in:
Aaron Hill 2020-02-19 11:36:04 -05:00
parent 37c2c38aeb
commit 66b152cf9f
No known key found for this signature in database
GPG Key ID: B4087E510E98B164

View File

@ -1,15 +1,15 @@
// run-pass
fn main() {
let x = 1;
let x = 1;
#[cfg(FALSE)]
if false {
x = 2;
} else if true {
x = 3;
} else {
x = 4;
}
assert_eq!(x, 1);
#[cfg(FALSE)]
if false {
x = 2;
} else if true {
x = 3;
} else {
x = 4;
}
assert_eq!(x, 1);
}