70106f35ce
A typo in the Makefile was causing these to not run. Happily, a lot of these tests pass, so un-xfailed.
16 lines
146 B
Rust
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) { }
|
|
}
|
|
}
|