rust/src/test/run-pass/lazy-and-or.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

13 lines
261 B
Rust

fn incr(x: &mutable int) -> bool { x += 1; assert (false); ret false; }
fn main() {
let x = 1 == 2 || 3 == 3;
assert (x);
let y: int = 10;
log x || incr(y);
assert (y == 10);
if true && x { assert (true); } else { assert (false); }
}