rust/src/test/compile-fail/do2.rs

7 lines
151 B
Rust
Raw Normal View History

fn f(f: fn@(int) -> bool) -> bool { f(10i) }
2012-06-18 19:42:09 -05:00
fn main() {
2012-08-30 20:57:58 -05:00
assert do f() |i| { i == 10i } == 10i;
//~^ ERROR: expected `bool` but found `int`
2012-06-18 19:42:09 -05:00
}