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

20 lines
279 B
Rust
Raw Normal View History

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