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

15 lines
365 B
Kotlin
Vendored

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