[klib] Fix serialization of missing annotations

^KT-42490
^KT-44625
This commit is contained in:
Pavel Kunyavskiy
2022-12-12 17:27:41 +01:00
committed by Space Team
parent 90d702ed27
commit 17e9a6a781
21 changed files with 526 additions and 106 deletions
@@ -0,0 +1,14 @@
package test
@test.Ann public val @receiver:test.Ann kotlin.Int.bar: kotlin.Int
@test.Ann public fun @receiver:test.Ann kotlin.Int.foo(/*0*/ @test.Ann arg: kotlin.Int): kotlin.Int
public final class A {
public constructor A()
@test.Ann public final val @receiver:test.Ann kotlin.Int.bar: kotlin.Int
@test.Ann public final fun @receiver:test.Ann kotlin.Int.foo(/*0*/ @test.Ann arg: kotlin.Int): kotlin.Int
}
public final annotation class Ann : kotlin.Annotation {
public constructor Ann()
}