/src/test/compile-fail/bad-bang-ann.rs

http://github.com/jruderman/rust · Rust · 9 lines · 4 code · 2 blank · 3 comment · 2 complexity · d1c0c80b0ae85e08cc7ae57b5f22022c MD5 · raw file

  1. // -*- rust -*-
  2. // Tests that a function with a ! annotation always actually fails
  3. fn bad_bang(i: uint) -> ! {
  4. if i < 0u { } else { fail; }
  5. //~^ ERROR expected `_|_` but found `()`
  6. }
  7. fn main() { bad_bang(5u); }