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>() : P<W, <!UNRESOLVED_REFERENCE!>T<!>> {
companion object : P<W, <!UNRESOLVED_REFERENCE!>T<!>> {
}
inner class D : P<W, <!UNRESOLVED_REFERENCE!>T<!>>
}
}
}
}