Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
kt1119.kt
blob: 6445197faeee37cb6409da3fb879d4d5518bcd92 [
file
]
enum
class
Direction
()
{
NORTH
{
val someSpecialValue
=
"OK"
override
fun f
()
=
someSpecialValue
};
abstract
fun f
():
String
}
fun box
()
=
Direction
.
NORTH
.
f
()