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

10 lines
119 B
Plaintext
Vendored

class C {
companion object {
operator fun get(s: String): C = C()
}
}
fun foo() {
C<caret>["x"]
}