Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/nestedConstructorCallable.kt
T
2020-12-16 19:52:30 +03:00

9 lines
104 B
Kotlin
Vendored

class A {
class Nested
fun main() {
val x = ::Nested
val y = A::Nested
}
}