Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
annotations
/
nestedClassesInAnnotations.kt
blob: c941e0cbc80234fae1567593012549e0d8a7c12b [
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
}