rust/src/test/compile-fail/pattern-tyvar-2.rs
2012-09-05 12:32:05 -07:00

13 lines
227 B
Rust

// -*- rust -*-
use std;
use option::Some;
// error-pattern: mismatched types
enum bar { t1((), Option<~[int]>), t2, }
fn foo(t: bar) -> int { match t { t1(_, Some(x)) => { return x * 3; } _ => { fail; } } }
fn main() { }