Files
kotlin/compiler/testData/codegen/box/annotations/nestedClassesInAnnotations.kt
Alexander Udalov a46a2b9b1c Support nested classes in annotation classes
#KT-16962 In Progress
2018-01-24 15:54:35 +01:00

11 lines
186 B
Kotlin
Vendored

// !LANGUAGE: +NestedClassesInAnnotations
annotation class Foo(val kind: Kind) {
enum class Kind { FAIL, OK }
}
@Foo(Foo.Kind.OK)
fun box(): String {
return Foo.Kind.OK.name
}