4c88b31878
KT-5322 super.get issues a "Replace 'get' call with index operator" inspection #KT-7525 Fixed #KT-5322 Fixed
10 lines
106 B
Kotlin
10 lines
106 B
Kotlin
class C {
|
|
companion object {
|
|
fun minus(): C = C()
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
C.<caret>minus()
|
|
}
|