Files
kotlin-fork/js/js.translator/testFiles/sourcemap/cases/methodCallInMethod.kt
T

16 lines
145 B
Kotlin

package foo
//KT-4054
class A() {
fun f0() {}
fun f1() {
f0()
this.f0()
}
}
fun box(): String {
return "OK"
}