a38a396a43
Basic reflection is usable without any imports (with :: literals)
This reverts commit 9503056dd5.
32 lines
495 B
Kotlin
32 lines
495 B
Kotlin
import kotlin.reflect.KFunction0
|
|
|
|
class A {
|
|
class Nested
|
|
|
|
fun main() {
|
|
val x = ::Nested
|
|
val y = A::Nested
|
|
|
|
x : KFunction0<Nested>
|
|
y : KFunction0<Nested>
|
|
}
|
|
|
|
class object {
|
|
fun main() {
|
|
::Nested
|
|
val y = A::Nested
|
|
|
|
y : KFunction0<A.Nested>
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
fun main() {
|
|
::<!UNRESOLVED_REFERENCE!>Nested<!>
|
|
val y = A::Nested
|
|
|
|
y : KFunction0<A.Nested>
|
|
}
|
|
}
|