12 lines
108 B
Kotlin
Vendored
12 lines
108 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
class J extends K {
|
|
void foo() {}
|
|
}
|
|
|
|
// FILE: K.kt
|
|
|
|
class K : J() {
|
|
fun bar() {}
|
|
}
|