Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithBinaryOperator/super.kt
T
2015-12-17 11:11:27 +03:00

12 lines
195 B
Kotlin
Vendored

// IS_APPLICABLE: false
open class Base {
open operator fun plus(s: String) = ""
}
class C : Base() {
override fun plus(s: String): String {
return super.<caret>plus(s)
}
}