Files
kotlin-fork/js/js.translator/testData/box/callableReference/function/extension.kt
T
2018-09-12 09:49:25 +03:00

11 lines
221 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1283
// 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())
}