Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt28456a.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

16 lines
201 B
Plaintext
Vendored

class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
operator fun A.set(vararg i: Int, v: Int) {
}
fun testSimpleAssignment(a: A) {
a.set(i = [1, 2, 3], v = 0)
}