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

10 lines
178 B
Kotlin
Vendored

// PROBLEM: none
// ERROR: Unresolved reference: got
fun test() {
class Test{
operator fun get(i: Int) : Int = 0
}
val test = Test()
test.g<caret>ot(0)
}