2011-05-14 21:03:08 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import option;
|
|
|
|
import option::some;
|
2011-05-14 21:03:08 -05:00
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
tag bar { t1((), option::t<[int]>); t2; }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2011-08-13 02:10:18 -05:00
|
|
|
fn foo(t: bar) { alt t { t1(_, some::<int>(x)) { log x; } _ { fail; } } }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2011-08-10 11:27:22 -05:00
|
|
|
fn main() { }
|