blob: bbaa44886ce252f7bbae6a36aa6afa83ce7c1de2 [file]
// TARGET_BACKEND: JVM
class Incrementer : (Int) -> Int by Int::inc
fun box(): String {
val incr = Incrementer()
val test = incr(5)
if (test != 6) throw Exception("incr(5): $test")
return "OK"
}