cb92990ed6
- Keep the test data under "native/native.tests/testData/klib/" dir - Rename tests from "klib contents" to "klib dump-metadata"
8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
package test
|
|
|
|
enum class My { ALPHA, BETA, OMEGA }
|
|
|
|
annotation class ann(vararg val m: My)
|
|
|
|
@ann(My.ALPHA, My.BETA) annotation class annotated
|