Files
kotlin-fork/idea/testData/intentions/attributeCallReplacements/replaceGetIntention/sanityCheck.kt
T

10 lines
176 B
Kotlin

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