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

14 lines
236 B
Rust
Raw Normal View History

// -*- rust -*-
use std;
import option;
import option::some;
// error-pattern: mismatched types
2012-01-19 16:01:47 -08:00
enum bar { t1((), option::t<[int]>); t2; }
2011-07-27 14:19:39 +02:00
fn foo(t: bar) -> int { alt t { t1(_, some(x)) { ret x * 3; } _ { fail; } } }
fn main() { }