What's the problem here?: ``` val a = 1 val x = :...
# announcements
v
What's the problem here?:
Copy code
val a = 1
val x = ::a.get()  //works

val t : KProperty<*> = ::a
val y = t.get()  // Unresolved refference
Bug?