1 2 3 4 5 6 7 8 9 10
pure fn f(f: fn()) { } pure fn g() { // `f || { }` is considered pure, so `do f { }` should be too do f { } } fn main() { }