Files
kotlin-fork/js/js.translator/testData/box/callableReference/function/extensionFromTopLevelStringNoArgs.kt
T
2018-04-27 20:02:59 +03:00

23 lines
402 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1112
// This test was adapted from compiler/testData/codegen/box/callableReference/function/.
package foo
fun run(arg1: A, funRef:A.() -> String): String {
return arg1.funRef()
}
class A
fun A.foo() = "OK"
fun box(): String {
val x = A::foo
var r = x(A())
if (r != "OK") return r
r = run(A(), A::foo)
if (r != "OK") return r
return "OK"
}