Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
delegatedPropertyInEnum.kt
blob: fd9d298723e9d0cd5f4935a403b1c8470cd89e80 [
file
]
// IGNORE_BACKEND: JVM
object
D
{
operator
fun getValue
(
a
:
Any
?,
b
:
Any
?):
String
=
"OK"
}
enum
class
A
{
GOO
;
val a
by
D
val b
=
a
}
fun box
()
=
A
.
GOO
.
b