7a4d20b4cf
(cherry picked from commit 970ac5a) #KT-13269 Fixed
11 lines
142 B
Kotlin
Vendored
11 lines
142 B
Kotlin
Vendored
class Derived: Base() {
|
|
fun test() {
|
|
super.<caret>test()
|
|
}
|
|
}
|
|
|
|
open class Base {
|
|
fun test() {}
|
|
}
|
|
|
|
// EXPECTED: super.test() |