Redundant override inspection: don't report for ambiguous derivation

#KT-24405 Fixed
#KT-25883 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-09-04 15:45:26 +03:00
parent 607392a2ab
commit dead2516c2
7 changed files with 105 additions and 17 deletions
@@ -0,0 +1,13 @@
// PROBLEM: none
interface Foo {
fun test()
}
interface Gav {
fun test() {}
}
class TwoInterfaces : Foo, Gav {
override <caret>fun test() = super.test()
}