5e63f7627f
KT-59486
25 lines
747 B
Kotlin
Vendored
25 lines
747 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: A
|
|
// Public signature: /A|null[0]
|
|
class A {
|
|
// CHECK:
|
|
// Mangled name: A#<init>(){}
|
|
// Public signature: /A.<init>|-5645683436151566731[0]
|
|
// Public signature debug description: <init>(){}
|
|
constructor() /* primary */
|
|
|
|
}
|
|
|
|
// CHECK:
|
|
// Mangled name: #set@A(kotlin.IntArray...;kotlin.Int){}
|
|
// Public signature: /set|-7344305741500909935[0]
|
|
// Public signature debug description: set@A(kotlin.IntArray...;kotlin.Int){}
|
|
operator fun A.set(vararg i: Int, v: Int): Unit
|
|
|
|
// CHECK:
|
|
// Mangled name: #testSimpleAssignment(A){}
|
|
// Public signature: /testSimpleAssignment|1100548656282165605[0]
|
|
// Public signature debug description: testSimpleAssignment(A){}
|
|
fun testSimpleAssignment(a: A): Unit
|
|
|