Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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
()