Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
codegen
/
boxJvm
/
evaluate
/
enumRecursiveName.kt
blob: 4aa3a057a667211bc3a04ad6e124099f88c54507 [
file
]
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JVM_IR
enum
class
TestEnum
(
val testNaming
:
String
)
{
OK
(
OK
.
name
),
}
// STOP_EVALUATION_CHECKS
fun box
():
String
{
val name
=
TestEnum
.
OK
.
name
return
name
}