/src/test/run-pass/dead-code-one-arm-if.rs

http://github.com/jruderman/rust · Rust · 5 lines · 1 code · 3 blank · 1 comment · 2 complexity · e47e2c63dcf4800d651b5209c3fa7ec0 MD5 · raw file

  1. // -*- rust -*-
  2. fn main() { if 1 == 1 { return; } debug!{"Paul is dead"}; }