Files
kotlin-fork/compiler/testData/codegen/box/annotations/nestedClassesInAnnotations.kt
T
2022-08-01 08:57:16 +00: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
}