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

9 lines
104 B
Kotlin
Vendored

// IS_APPLICABLE: false
package p
operator fun get(s: String) = s
fun foo() {
p.<caret>get("x")
}