Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
kt7257.kt
blob: 78dca7e9610b1d62228e98866c58dc97813183df [
file
] [
log
] [
blame
]
enum
class
X
{
B
{
val value2
=
"K"
override
val value
=
"O"
.
let
{
it
+
value2
}
};
abstract
val value
:
String
}
fun box
()
=
X
.
B
.
value