cb92990ed6
- Keep the test data under "native/native.tests/testData/klib/" dir - Rename tests from "klib contents" to "klib dump-metadata"
15 lines
218 B
Kotlin
Vendored
15 lines
218 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Anno(val value: String = "0", val x: Int = 0)
|
|
annotation class Bnno
|
|
|
|
enum class Eee {
|
|
@Anno()
|
|
Entry1,
|
|
Entry2,
|
|
@Anno("3") @Bnno
|
|
Entry3,
|
|
@Anno("4", 4)
|
|
Entry4,
|
|
}
|