Files
kotlin-fork/analysis/low-level-api-fir/testdata/nonLocalDeclarationAnchors/localFunctionInsideSuperEntryCall.kt
T
2023-05-11 16:09:02 +02:00

12 lines
218 B
Kotlin

package one
interface Interface {
fun foo(param: String)
}
open class ClassWithParameter(i: Interface)
class TopLevelClass : ClassWithParameter(object : Interface {
override fun foo(param: String) {
}
})