/src/test/run-pass/lazy-and-or.rs
http://github.com/jruderman/rust · Rust · 12 lines · 9 code · 3 blank · 0 comment · 8 complexity · 555344e52824ce7ef0b932b038bbe6d7 MD5 · raw file
- fn incr(&x: int) -> bool { x += 1; assert (false); return false; }
- fn main() {
- let x = 1 == 2 || 3 == 3;
- assert (x);
- let mut y: int = 10;
- log(debug, x || incr(y));
- assert (y == 10);
- if true && x { assert (true); } else { assert (false); }
- }