rust/src/test/compile-fail/pattern-tyvar.rs

12 lines
240 B
Rust
Raw Normal View History

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