rust/src/test/compile-fail/pattern-tyvar-2.rs
2011-07-27 15:54:33 +02:00

13 lines
247 B
Rust

// -*- rust -*-
use std;
import std::option;
import std::option::some;
// error-pattern: mismatched types
tag bar { t1((), option::t[vec[int]]); t2; }
fn foo(t: bar) -> int { alt t { t1(_, some(x)) { ret x * 3; } _ { fail; } } }
fn main() { }