fn main() { let i: int = match Some::(3) { None:: => { fail } Some::(_) => { 5 } }; log(debug, i); }