Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/classMembers/EnumEntry.kt
Alexander Udalov 6f347f351a Load annotations on compiled Kotlin enum entries
#KT-10339 Fixed
2015-12-13 03:52:42 +03:00

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,
}