[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,13 @@
package test {
// Signature: test/Class|null[0]
class Class constructor() {
// Signature: test/Class.member|member(){}[0]
fun member(): Nothing?
}
// Signature: test/extension|extension@0:0(){0§<kotlin.Any?>}[0]
fun <T> T.extension(): T?
// Signature: test/function|function(kotlin.Int;kotlin.String){}[0]
fun function(int: Int, string: String = ...): Class
// Signature: test/property|{}property[0]
val property: Unit
}