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

12 lines
228 B
Kotlin
Vendored

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