Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGetOrSet/qualifier.kt.after
T
2015-10-22 18:48:15 +03:00

10 lines
112 B
Plaintext
Vendored

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