Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceGetOrSet/super.kt
T
2017-12-26 18:39:47 +03:00

12 lines
185 B
Kotlin
Vendored

// PROBLEM: none
open class Base {
open operator fun get(s: String) = ""
}
class C : Base() {
override fun get(s: String): String {
return super.<caret>get(s)
}
}