summary refs log tree commit diff
path: root/src/test/compile-fail/do2.rs
blob: 919d186c40dfc3a8b854e42e1045d85669b56900 (plain)
1
2
3
4
5
fn f(f: fn@(int) -> bool) -> bool { f(10i) }

fn main() {
    assert do f() |i| { i == 10i } == 10i; //~ ERROR: expected `bool` but found `int`
}