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

10 lines
137 B
Kotlin
Vendored

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