Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
involvesIrInterpreter
/
enumRecursiveName.kt
blob: 5183c743c6cd15a602cade710ea3b7926b8aaf5a [
file
]
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_K2: JVM_IR
enum
class
TestEnum
(
val testNaming
:
String
)
{
OK
(
OK
.<!
EVALUATED
(
"OK"
)!>
name
<!>),
}
// STOP_EVALUATION_CHECKS
fun box
():
String
{
val name
=
TestEnum
.
OK
.
name
return
name
}