Files
kotlin-fork/js/js.translator/testData/box/callableReference/function/extension.kt
T

11 lines
220 B
Kotlin
Vendored

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