94c4b426f5
#KT-13124 Fixed
17 lines
285 B
Kotlin
Vendored
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
|
|
}
|
|
} |