6e76978530
^KT-54673 Fixed
16 lines
286 B
Kotlin
Vendored
16 lines
286 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-54673
|
|
|
|
open class KotlinBaseClass {
|
|
open fun kotlinFun() {}
|
|
}
|
|
|
|
interface sealedInterface {
|
|
fun someFun() {
|
|
object : KotlinBaseClass() {
|
|
override fun kotlinFun() {
|
|
super.kotlinFun()
|
|
}
|
|
}
|
|
}
|
|
} |