d3043b6f1c
^KTIJ-25437 Fixed
12 lines
225 B
Kotlin
12 lines
225 B
Kotlin
package one
|
|
|
|
interface Interface {
|
|
fun foo(param: String)
|
|
}
|
|
|
|
open class ClassWithParameter(i: Interface)
|
|
|
|
class TopLevelClass : ClassWithParameter(object : Interface {
|
|
override fun fo<caret>o(param: String) {
|
|
}
|
|
}) |