2011-08-23 20:25:50 -05:00
|
|
|
// FIXME should be in run-pass
|
|
|
|
|
2011-05-04 13:32:06 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-05-04 17:24:07 -05:00
|
|
|
// error-pattern: Non-boolean return type
|
2011-05-04 13:32:06 -05:00
|
|
|
|
|
|
|
// this checks that a pred with a non-bool return
|
|
|
|
// type is rejected, even if the pred is never used
|
|
|
|
|
2011-08-24 19:24:58 -05:00
|
|
|
pure fn bad(a: int) -> int { ret 37; }
|
2011-05-04 13:32:06 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { }
|