use std; import std::option; import std::option::t; import std::option::none; import std::option::some; fn foo(y: option::t) { let x: int; let rs: [int] = []; /* tests that x doesn't get put in the precondition for the entire if expression */ if true { } else { alt y { none::. { x = 17; } _ { x = 42; } } rs += [x]; } ret; } fn main() { log "hello"; foo::(some::(5)); }