rust/src/test/compile-fail/pattern-tyvar.rs

19 lines
268 B
Rust
Raw Normal View History

// -*- rust -*-
extern mod std;
2012-09-05 12:32:05 -07:00
use option::Some;
// error-pattern: mismatched types
2012-08-20 12:23:37 -07:00
enum bar { t1((), Option<~[int]>), t2, }
fn foo(t: bar) {
2012-08-06 12:34:08 -07:00
match t {
2012-08-20 12:23:37 -07:00
t1(_, Some::<int>(x)) => {
log(debug, x);
}
2012-08-03 19:59:04 -07:00
_ => { fail; }
}
}
fn main() { }