Files
kotlin-fork/compiler/testData/codegen/box/callableReference/local/extensionToLocalClass.kt
T
2013-12-24 20:41:20 +04:00

6 lines
87 B
Kotlin

fun box(): String {
class A
fun A.foo() = "OK"
return (::A)().(A::foo)()
}