9 lines
124 B
Rust
9 lines
124 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// error-pattern:non-exhaustive match failure
|
|
tag t { a; b; }
|
|
|
|
fn main() { let x = a; alt x { b. { } } } |