rust/src/test/run-pass/alt-join.rs
Marijn Haverbeke fc6b7c8b38 Reformat for new mode syntax, step 1
Long lines were fixed in a very crude way, as I'll be following up
with another reformat in a bit.
2011-09-12 12:04:14 +02:00

20 lines
425 B
Rust

use std;
import std::option;
import std::option::t;
import std::option::none;
import std::option::some;
fn foo<T>(y: option::t<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::<T>. { x = 17; } _ { x = 42; } } rs += [x]; }
ret;
}
fn main() { log "hello"; foo::<int>(some::<int>(5)); }