12 lines
132 B
Rust
12 lines
132 B
Rust
|
// error-pattern:explicit failure
|
||
|
|
||
|
fn main() {
|
||
|
auto x = if (false) {
|
||
|
0
|
||
|
} else if (true) {
|
||
|
fail
|
||
|
} else {
|
||
|
10
|
||
|
};
|
||
|
}
|