[KLIB tool] Update KLIB metadata dump tests

^KT-62340
This commit is contained in:
Dmitriy Dolovov
2024-02-09 15:23:40 +01:00
committed by Space Team
parent f9f97f2050
commit 07767f88e2
170 changed files with 9177 additions and 2207 deletions
@@ -1,7 +1,27 @@
package <root> {
@Deprecated(message = "O/{id}") class Foo constructor()
object Obj {
const val O: String = "O"
val concat: String = "OK"
library {
// module name: <stringConcatenation.kt>
library fragment {
// package name: <root>
// class name: Foo
// class name: Obj
@kotlin/Deprecated(message = "O/{id}")
public final class Foo : kotlin/Any {
public constructor()
}
}
public final object Obj : kotlin/Any {
private constructor()
public final const val O: kotlin/String /* = "O" */
public final get
public final val concat: kotlin/String /* = "OK" */
public final get
}
}
}