Files
kotlin-fork/compiler/testData/codegen/box/callableReference/kt16752.kt
T
2020-12-23 21:50:05 +03:00

13 lines
237 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// IGNORE_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"
}