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