2011-05-14 19:03:08 -07:00
|
|
|
// -*- rust -*-
|
|
|
|
use std;
|
2011-12-13 16:25:51 -08:00
|
|
|
import option;
|
|
|
|
import option::some;
|
2011-05-14 19:03:08 -07:00
|
|
|
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
|
2012-06-29 16:26:56 -07:00
|
|
|
enum bar { t1((), option<~[int]>), t2, }
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2011-12-22 14:42:52 -08:00
|
|
|
fn foo(t: bar) {
|
|
|
|
alt t {
|
|
|
|
t1(_, some::<int>(x)) {
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, x);
|
2011-12-22 14:42:52 -08:00
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
2011-05-14 19:03:08 -07:00
|
|
|
|
2011-08-10 09:27:22 -07:00
|
|
|
fn main() { }
|