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

10 lines
187 B
Kotlin
Vendored

// This test was adapted from compiler/testData/codegen/box/callableReference/function/local/.
package foo
class A
fun box(): String {
fun A.foo() = "OK"
return (A::foo)(A())
}