b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
16 lines
201 B
Plaintext
Vendored
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)
|
|
}
|