Files
kotlin/compiler/testData/codegen/box/callableReference/function/traitMember.kt
2018-06-28 12:26:41 +02:00

11 lines
138 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
interface A {
fun foo(): String
}
class B : A {
override fun foo() = "OK"
}
fun box() = (A::foo)(B())