2011-05-14 19:03:08 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import option;
|
|
|
|
import option::some;
|
2011-05-14 19:03:08 -07:00
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2012-06-29 16:26:56 -07:00
|
|
|
enum bar { t1((), option<~[int]>), t2, }
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2012-08-06 12:34:08 -07:00
|
|
|
fn foo(t: bar) -> int { match t { t1(_, some(x)) => { return x * 3; } _ => { fail; } } }
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { }
|