blob: 34008c6879199e045876d175c4ceb862fd87f97d [file] [log] [blame]
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() {
}