[KLIB tool] Run tests for 'dump-metadata' with & without signatures

This commit is contained in:
Dmitriy Dolovov
2023-10-23 22:47:53 +02:00
committed by Space Team
parent aa9b901926
commit 88a297b022
78 changed files with 1888 additions and 13 deletions
@@ -0,0 +1,12 @@
package <root> {
// Signature: /MyTransformer|null[0]
typealias MyTransformer = (String) -> Int
// Signature: /v1|{}v1[0]
val v1: Int = 1
// Signature: /v2|{}v2[0]
val v2: String = "hello"
// Signature: /v3|{}v3[0]
val v3: (String) -> Int
// Signature: /v4|{}v4[0]
val v4: MyTransformer /* = (String) -> Int */
}