Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/nestedConstructorCallable.kt
T
2020-03-19 09:51:01 +03:00

8 lines
103 B
Kotlin
Vendored

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