Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/deepInnerClass.fir.kt
T
2021-11-12 15:20:42 +03:00

15 lines
397 B
Kotlin
Vendored

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