10 lines
172 B
Plaintext
Vendored
10 lines
172 B
Plaintext
Vendored
// FIX: Replace 'get' call with indexing operator
|
|
|
|
fun test() {
|
|
class Test{
|
|
operator fun get(i: Int) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test<caret>[0]
|
|
}
|