Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
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
}