dead2516c2
#KT-24405 Fixed #KT-25883 Fixed
13 lines
169 B
Kotlin
Vendored
13 lines
169 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
interface Foo {
|
|
fun test()
|
|
}
|
|
|
|
interface Gav {
|
|
fun test() {}
|
|
}
|
|
|
|
class TwoInterfaces : Foo, Gav {
|
|
override <caret>fun test() = super.test()
|
|
} |