dead2516c2
#KT-24405 Fixed #KT-25883 Fixed
14 lines
222 B
Kotlin
Vendored
14 lines
222 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
abstract class AbstractClass {
|
|
abstract fun foo(): Int
|
|
}
|
|
|
|
interface Interface {
|
|
fun foo(): Int = 3
|
|
}
|
|
|
|
class ChildClass : AbstractClass(), Interface {
|
|
override <caret>fun foo() = super.foo()
|
|
}
|