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