rust/src/test/run-fail/non-exhaustive-match.rs

16 lines
146 B
Rust
Raw Normal View History

// -*- rust -*-
// error-pattern:non-exhaustive match failure
tag t {
a;
b;
}
fn main() {
auto x = a;
alt (x) {
case (b) { }
}
}