[klib] Test signature descriptions in irText tests

KT-59486
This commit is contained in:
Sergej Jaskiewicz
2023-06-22 17:30:00 +02:00
committed by Space Team
parent 6142d75bb4
commit 5e63f7627f
562 changed files with 6867 additions and 9 deletions
@@ -15,21 +15,26 @@ interface I2 {
// CHECK JVM_IR:
// Mangled name: #component1@I1(){}kotlin.Int
// Public signature: /component1|8801376328143328436[0]
// Public signature debug description: component1@I1(){}kotlin.Int
// CHECK JS_IR NATIVE:
// Mangled name: #component1@I1(){}
// Public signature: /component1|-7381230852082083752[0]
// Public signature debug description: component1@I1(){}
operator fun I1.component1(): Int
// CHECK JVM_IR:
// Mangled name: #component2@I2(){}kotlin.String
// Public signature: /component2|-3393912940495634771[0]
// Public signature debug description: component2@I2(){}kotlin.String
// CHECK JS_IR NATIVE:
// Mangled name: #component2@I2(){}
// Public signature: /component2|-7506551577483428650[0]
// Public signature debug description: component2@I2(){}
operator fun I2.component2(): String
// CHECK:
// Mangled name: #test(I1){}
// Public signature: /test|-2567635956051433615[0]
// Public signature debug description: test(I1){}
fun test(x: I1): Unit