rust/src/test/compile-fail/pattern-tyvar.rs
Brian Anderson ee7d03f7d7 Convert most working tests to ivecs
I tried to pay attention to what was actually being tested so, e.g. when I
test was just using a vec as a boxed thing, I converted to boxed ints, etc.

Haven't converted the macro tests yet. Not sure what to do there.
2011-08-12 16:13:13 -07:00

12 lines
237 B
Rust

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