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

13 lines
234 B
Rust
Raw Normal View History

// -*- rust -*-
extern mod std;
2012-09-05 14:32:05 -05:00
use option::Some;
// error-pattern: mismatched types
2012-08-20 14:23:37 -05:00
enum bar { t1((), Option<~[int]>), t2, }
2012-08-20 14:23:37 -05:00
fn foo(t: bar) -> int { match t { t1(_, Some(x)) => { return x * 3; } _ => { fail; } } }
fn main() { }