Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/bound/innerNested.kt
T

11 lines
154 B
Kotlin
Vendored

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