Files

11 lines
154 B
Kotlin
Vendored

// FIR_IDENTICAL
class Outer {
class Nested
inner class Inner
}
fun test() {
Outer()::Inner
Outer()::<!UNRESOLVED_REFERENCE!>Nested<!>
}