blob: 25c4b4546af609c15668e6e70782d7a3d58e187a [file]
// !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
}