Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/skipFakeOverrides.kt
T
2016-08-17 11:50:00 +03:00

17 lines
285 B
Kotlin
Vendored

// TARGET_CLASS: B
open class A {
open fun callSuper() {
// Something important
}
}
open class B : A() {
}
class <caret>C : B() {
// INFO: {"checked": "true"}
override fun callSuper() {
super.callSuper() // We simply call up to the base class
}
}