blob: 6ebc4a2762671f7467db72861c616f6bf174437c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// -*- rust -*-
use std;
import option;
import option::some;
// error-pattern: mismatched types
enum bar { t1((), option<[int]>), t2, }
fn foo(t: bar) -> int { alt t { t1(_, some(x)) { ret x * 3; } _ { fail; } } }
fn main() { }
|