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