18 lines
223 B
Kotlin
Vendored
18 lines
223 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: Super.java
|
|
|
|
interface Super {
|
|
void foo(long superName);
|
|
}
|
|
|
|
// FILE: Sub.java
|
|
|
|
interface Sub extends Super {
|
|
}
|
|
|
|
// FILE: SubSub.kt
|
|
|
|
class SubSub : Sub {
|
|
override fun foo(subName: Long) {}
|
|
}
|