Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
annotations
/
nestedClassesInAnnotations.kt
blob: 6d0499940853da1767956d2fd0e8f5f414f3a284 [
file
]
annotation
class
Foo
(
val kind
:
Kind
)
{
enum
class
Kind
{
FAIL
,
OK
}
}
@Foo
(
Foo
.
Kind
.
OK
)
fun box
():
String
{
return
Foo
.
Kind
.
OK
.
name
}