Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
kt1119.kt
blob: f3da929949256487a44a3848a08a50ed626c4859 [
file
]
// KT-55828
// IGNORE_BACKEND_K2: NATIVE
enum
class
Direction
()
{
NORTH
{
val someSpecialValue
=
"OK"
override
fun f
()
=
someSpecialValue
};
abstract
fun f
():
String
}
fun box
()
=
Direction
.
NORTH
.
f
()