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