What kind of reflections does K/N support? ``` fun...
# kotlin-native
a
What kind of reflections does K/N support?
Copy code
fun main(args: Array<String>) {
    println(reflect())
    println(::reflect.returnType)
}

fun reflect() = "Reflecting"
This code does not compile
However:
println(::reflect.name)
This does
a
Thanks, but is there a list of whats already implemented or I shall just try and error?
m
Hmm, github not working... But IIRC nothing but
.name
is implemented, just commented out.