Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/function/traitMember.kt
2015-05-12 19:43:17 +02:00

10 lines
113 B
Kotlin

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