Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/deepInnerClass.fir.kt
T

14 lines
320 B
Kotlin
Vendored

interface P<U, Y>
class A<T> {
class B {
fun test() {
class C<W>() : <!UNRESOLVED_REFERENCE!>P<W, T><!> {
companion object : <!UNRESOLVED_REFERENCE!>P<W, T><!> {
}
inner class D : <!UNRESOLVED_REFERENCE!>P<W, T><!>
}
}
}
}