Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegatedProperty
/
delegatedPropertyInEnum.kt
blob: 67d34a2387c5702fce52d05e8810ddfa5614abf4 [
file
]
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