10 lines
149 B
Plaintext
Vendored
10 lines
149 B
Plaintext
Vendored
// FIX: Replace 'set' call with indexing operator
|
|
|
|
class C {
|
|
operator fun set(s: String, value: Int) {}
|
|
}
|
|
|
|
fun foo() {
|
|
C()<caret>["x"] = 1
|
|
}
|