2011-05-14 21:03:08 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import option;
|
2012-08-20 14:23:37 -05:00
|
|
|
import option::Some;
|
2011-05-14 21:03:08 -05:00
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
enum bar { t1((), Option<~[int]>), t2, }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
fn foo(t: bar) -> int { match t { t1(_, Some(x)) => { return x * 3; } _ => { fail; } } }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn main() { }
|