Files
kotlin-fork/idea/testData/inspectionsLocal/redundantOverride/twoInterfaces.kt
T
Mikhail Glukhikh dead2516c2 Redundant override inspection: don't report for ambiguous derivation
#KT-24405 Fixed
#KT-25883 Fixed
2018-09-07 16:32:11 +03:00

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()
}