mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
238 B
Kotlin
Vendored
16 lines
238 B
Kotlin
Vendored
// ALLOW_AST_ACCESS
|
|
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,
|
|
}
|