Files
kotlin-fork/compiler/testData/codegen/box/functions/kt1413.kt
T

27 lines
348 B
Kotlin
Vendored

package t
interface I{
fun f()
}
class Test{
fun foo(){
val i : I = object : I {
override fun f() {
fun local(){
bar()
}
local()
}
}
i.f()
}
fun bar(){}
}
fun box() : String {
Test().foo()
return "OK"
}