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