Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
kt9711.kt
blob: 406f19d3497ab23eb1bc272226c8abf0099f9182 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
enum
class
X
{
B
{
val value2
=
"OK"
override
val value
=
{
value2
}
};
abstract
val value
:
()
->
String
}
fun box
():
String
{
return
X
.
B
.
value
()
}