Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
enum
/
refToThis.kt
blob: 77da3bf2133e9838fd9aa439916e1a0274139ce9 [
file
]
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"
}