2012-01-12 18:23:24 -06:00
|
|
|
// error-pattern:squirrelcupcake
|
|
|
|
fn cmp() -> int {
|
2012-04-24 04:13:25 -05:00
|
|
|
alt check (option::some('a'), option::none::<char>) {
|
2012-07-14 00:57:48 -05:00
|
|
|
(option::some(_), _) { fail ~"squirrelcupcake"; }
|
2012-01-12 18:23:24 -06:00
|
|
|
(_, option::some(_)) { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { log(error, cmp()); }
|