rust/src/test/compile-fail/not-a-pred.rs

8 lines
205 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
// error-pattern: Non-predicate in constraint: lt
2010-06-23 23:03:09 -05:00
2011-07-27 07:48:34 -05:00
fn f(a: int, b: int) : lt(a,b) { }
2010-06-23 23:03:09 -05:00
2011-07-27 07:19:39 -05:00
obj lt(a: int, b: int) { }
2010-06-23 23:03:09 -05:00
2011-07-27 07:19:39 -05:00
fn main() { let a: int = 10; let b: int = 23; check (lt(a, b)); f(a, b); }