Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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