Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
nested.kt
blob: 1ca690a361e58cbd790d5cc5f6fe48e99929052b [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
enum
class
Foo
{
A
;
enum
class
Bar
{
C
}
}
fun box
():
String
{
assertEquals
(
"A"
,
Foo
.
A
.
toString
())
assertEquals
(
"C"
,
Foo
.
Bar
.
C
.
toString
())
return
"OK"
}