blob: 8acb271bd831a05f502cc081a1d8ff64e6584f8f [file] [log] [blame]
fun foo(f: () -> Unit) {
f()
}
fun main(args: String) {
foo { val p = 1 }
}