rust/src/test/run-pass/alt-join.rs

20 lines
405 B
Rust
Raw Normal View History

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