Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
annotations
/
nestedClassesInAnnotations.kt
blob: 81cc76869d7043e3e189f802f897ec47bc631862 [
file
] [
log
] [
blame
]
// !LANGUAGE: +NestedClassesInAnnotations
// IGNORE_BACKEND: NATIVE
annotation
class
Foo
(
val kind
:
Kind
)
{
enum
class
Kind
{
FAIL
,
OK
}
}
@Foo
(
Foo
.
Kind
.
OK
)
fun box
():
String
{
return
Foo
.
Kind
.
OK
.
name
}