rust/src/test/run-fail/non-exhaustive-match.rs
2011-07-27 15:54:33 +02:00

9 lines
124 B
Rust

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