mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Add some nesting to the else-if test case
This commit is contained in:
parent
5d98f55fcf
commit
1689d99965
@ -16,4 +16,27 @@ fn main() {
|
||||
check(true);
|
||||
}
|
||||
|
||||
}
|
||||
if (1 == 2) {
|
||||
check(false);
|
||||
} else if (2 == 2) {
|
||||
if (1 == 1) {
|
||||
check(true);
|
||||
} else {
|
||||
if (2 == 1) {
|
||||
check(false);
|
||||
} else {
|
||||
check(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (1 == 2) {
|
||||
check(false);
|
||||
} else {
|
||||
if (1 == 2) {
|
||||
check(false);
|
||||
} else {
|
||||
check(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user