10 lines
176 B
Kotlin
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)
|
|
}
|