Files
kotlin-fork/idea/testData/inspectionsLocal/redundantOverride/classAndInterface.kt.after
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

11 lines
136 B
Plaintext
Vendored

open class Class {
open fun foo(): Int = 4
}
interface Interface {
fun foo(): Int
}
class ChildClass : Class(), Interface {
}