rust/src/test/run-fail/non-exhaustive-match.rs
2010-12-02 14:50:00 -08:00

16 lines
146 B
Rust

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