Files
kotlin-fork/js/js.translator/testData/callableReference/function/cases/extensionFromExtension.kt
T
2016-03-09 10:25:38 +03:00

11 lines
195 B
Kotlin
Vendored

// This test was adapted from compiler/testData/codegen/box/callableReference/function/.
package foo
class A
fun A.foo() = (A::bar)(this, "OK")
fun A.bar(x: String) = x
fun box() = A().foo()