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-01-19 16:01:47 -08:00
|
|
|
enum bar { t1((), option::t<[int]>); t2; }
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn foo(t: bar) -> int { alt t { t1(_, some(x)) { ret x * 3; } _ { fail; } } }
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { }
|