09dbae5eca
^KTIJ-25437 KT-MR-10036
12 lines
218 B
Kotlin
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) {
|
|
}
|
|
}) |