9 lines
171 B
Kotlin
Vendored
9 lines
171 B
Kotlin
Vendored
class A(val f: () -> Int) {
|
|
constructor() : this({ 23 })
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = A().f()
|
|
if (result != 23) return "fail: $result"
|
|
return "OK"
|
|
} |