2011-05-14 19:03:08 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
use std;
|
|
|
|
import std::option;
|
|
|
|
import std::option::some;
|
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
tag bar { t1((), option::t[vec[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-07-27 14:19:39 +02:00
|
|
|
fn main() { }
|