blob: 8147130d7a47948f9e56727c8de0f4439c6c9ac0 [file] [log] [blame]
fun foo(cl: () -> Int): Int {
return x + cl()
}
fun bar() {
foo {
2
}
}