4c88b31878
KT-5322 super.get issues a "Replace 'get' call with index operator" inspection #KT-7525 Fixed #KT-5322 Fixed
12 lines
201 B
Kotlin
Vendored
12 lines
201 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
open class Base {
|
|
open fun contains(s: String) = true
|
|
}
|
|
|
|
class C : Base() {
|
|
override fun contains(s: String): Boolean {
|
|
return super.<caret>contains(s)
|
|
}
|
|
}
|