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

13 lines
240 B
Rust
Raw Normal View History

// -*- 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() { }