33e6a85a2d
We exclude testData pattern from copyright scope
12 lines
218 B
Kotlin
Vendored
12 lines
218 B
Kotlin
Vendored
package one
|
|
|
|
interface Interface {
|
|
fun foo(param: String)
|
|
}
|
|
|
|
open class ClassWithParameter(i: Interface)
|
|
|
|
class TopLevelClass : ClassWithParameter(object : Interface {
|
|
override fun foo(param: String) {
|
|
}
|
|
}) |