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

20 lines
279 B
Rust
Raw Normal View History

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