Files
kotlin-fork/compiler/testData/codegen/box/callableReference/extensionFromExtension.kt
T
Alexander Udalov 054e5fb5e7 Codegen for callable reference expressions
#KT-1183 In Progress
2013-04-22 17:59:32 +04:00

8 lines
92 B
Kotlin

class A
fun A.foo() = this.(A::bar)("OK")
fun A.bar(x: String) = x
fun box() = A().foo()