blob: df91e6e0b492eec657863a7f1b01d7af30f358db [file] [log] [blame]
fun foo3(f: () -> Int) {
f()
}
fun main(args: String) {
foo3 { 1 }
}