Something like this? ``` class X { val propert...
# announcements
o
Something like this?
Copy code
class X {
    val property = ""
}

fun main(args: Array<String>) {
    println(X::property.name)
}