2011-05-14 21:03:08 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
use std;
|
|
|
|
import std::option;
|
|
|
|
import std::option::some;
|
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2011-08-12 17:42:39 -05:00
|
|
|
tag bar { t1((), option::t[[int]]); t2; }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn foo(t: bar) { alt t { t1(_, some[int](x)) { log x; } _ { fail; } } }
|
2011-05-14 21:03:08 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn main() { }
|