806aa7d4c1
So #KT-19428 Fixed
16 lines
221 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|