Files
kotlin-fork/idea/testData/inspectionsLocal/redundantOverride/callDifferentSuperMethod.kt
T
2017-08-18 12:05:02 +03:00

16 lines
221 B
Kotlin
Vendored

// PROBLEM: none
open class Foo {
open fun simple() {
}
open fun callDifferentSuperMethod() {
}
}
class Bar : Foo() {
override <caret>fun callDifferentSuperMethod() {
super.simple()
}
}