Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
compiler
/
testData
/
codegen
/
box
/
evaluate
/
enumRecursiveName.kt
blob: 00f45d9549fe14431a53a38d12b676bbb5820a49 [
file
]
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_K2: JVM_IR
enum
class
TestEnum
(
val testNaming
:
String
)
{
OK
(
OK
.
name
),
}
// STOP_EVALUATION_CHECKS
fun box
():
String
{
val name
=
TestEnum
.
OK
.
name
return
name
}