blob: c7053505567abc056789d3afe646491496790ca8 [file] [log] [blame] [edit]
//@ run-pass
//@ compile-flags:-g
fn helper<F: FnOnce(usize) -> bool>(_f: F) {
print!("");
}
fn main() {
let cond = 0;
helper(|v| v == cond)
}