rust/src/test/run-pass/lazy-init.rs

5 lines
100 B
Rust
Raw Normal View History

2010-07-08 09:33:25 -05:00
2011-07-27 07:19:39 -05:00
fn foo(x: int) { log x; }
2011-07-27 07:19:39 -05:00
fn main() { let x: int; if 1 > 2 { x = 12; } else { x = 10; } foo(x); }