/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

  1. fn incr(&x: int) -> bool { x += 1; assert (false); return false; }
  2. fn main() {
  3. let x = 1 == 2 || 3 == 3;
  4. assert (x);
  5. let mut y: int = 10;
  6. log(debug, x || incr(y));
  7. assert (y == 10);
  8. if true && x { assert (true); } else { assert (false); }
  9. }