17 lines
237 B
Rust
17 lines
237 B
Rust
// xfail-stage0
|
|
|
|
// When all branches of an if expression result in fail, the entire if
|
|
// expression results in fail.
|
|
|
|
fn main() {
|
|
auto x = if (true) {
|
|
10
|
|
} else {
|
|
if (true) {
|
|
fail
|
|
} else {
|
|
fail
|
|
}
|
|
};
|
|
}
|