Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/adapted.kt
T
2021-09-20 19:08:22 +03:00

7 lines
95 B
Kotlin
Vendored

class C {
fun ffff(i: Int, s: String = "OK") = s
}
fun box(): String = 42.run(C()::ffff)