fba35e1a3c
middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive.
14 lines
197 B
Rust
14 lines
197 B
Rust
// -*- rust -*-
|
|
// error-pattern: Non-exhaustive pattern
|
|
enum t { a(u), b }
|
|
enum u { c, d }
|
|
|
|
fn main() {
|
|
let x = a(c);
|
|
alt x {
|
|
a(d) { fail "hello"; }
|
|
b { fail "goodbye"; }
|
|
}
|
|
}
|
|
|