dead2516c2
#KT-24405 Fixed #KT-25883 Fixed
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
open class Class {
|
|
open fun foo(): Int = 4
|
|
}
|
|
|
|
interface Interface {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class ChildClass : Class(), Interface {
|
|
override <caret>fun foo() = super.foo()
|
|
}
|