e5d095d67e
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
14 lines
233 B
Rust
14 lines
233 B
Rust
// -*- 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() { }
|