Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/function/constructorOfNestedClassInObject.fir.kt
T

22 lines
383 B
Kotlin
Vendored

// KT-15951 Callable reference to class constructor from object is not resolved
object A {
class Wrapper
}
class Outer {
companion object {
class Wrapper
}
}
fun test() {
A::Wrapper
(A)::Wrapper
Outer.Companion::Wrapper
(Outer.Companion)::Wrapper
Outer::<!UNRESOLVED_REFERENCE!>Wrapper<!>
(Outer)::<!UNRESOLVED_REFERENCE!>Wrapper<!>
}