c4b4fa750c
#KT-1183 In Progress
18 lines
259 B
Kotlin
18 lines
259 B
Kotlin
class A {
|
|
class Nested
|
|
}
|
|
|
|
fun A.main() {
|
|
::<!UNRESOLVED_REFERENCE!>Nested<!>
|
|
val y = A::Nested
|
|
|
|
y : KFunction0<A.Nested>
|
|
}
|
|
|
|
fun Int.main() {
|
|
::<!UNRESOLVED_REFERENCE!>Nested<!>
|
|
val y = A::Nested
|
|
|
|
y : KFunction0<A.Nested>
|
|
}
|