d7e79e7f28
#KT-8324 Fixed
11 lines
137 B
Kotlin
Vendored
11 lines
137 B
Kotlin
Vendored
open class A {
|
|
open fun foo() {
|
|
|
|
}
|
|
}
|
|
|
|
class B : A() {
|
|
override fun foo() {
|
|
<selection>super</selection>.foo()
|
|
}
|
|
} |