1 2 3 4 5 6 7 8 9 10
// Testing that we can drop the || in for/do exprs fn f(f: fn@() -> bool) { } fn d(f: fn@()) { } fn main() { for f { } do d { } }