Files
2020-10-06 07:14:39 +02:00

25 lines
334 B
Kotlin
Vendored

import test.*
interface KotlinInterface<K> : JavaInterface<String> {
}
interface KotlinInterface2 : JavaInterface2<String> {
}
open class KotlinClass : JavaInterface<String> {
}
open class KotlinClass2 : JavaInterface2<String> {
}
open class KotlinClass_2 : KotlinClass() {
}
open class KotlinClass2_2 : KotlinClass2() {
}