Files
kotlin/compiler/testData/codegen/box/callableReference/local/extensionToLocalClass.kt
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)()
}