Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
refToThis.kt
blob: 77da3bf2133e9838fd9aa439916e1a0274139ce9 [
file
] [
log
] [
blame
]
enum
class
Enum
{
ENUM_VALUE
{
override
fun test
()
=
ENUM_VALUE
};
abstract
fun test
():
Enum
}
fun box
():
String
{
if
(
Enum
.
ENUM_VALUE
.
test
()
!=
Enum
.
ENUM_VALUE
)
return
"fail"
return
"OK"
}