4bd604f2ed
^KT-54311
15 lines
303 B
Kotlin
Vendored
15 lines
303 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
|
|
package test
|
|
|
|
class SomeClass
|
|
|
|
open class TopLevel<Outer> {
|
|
open inner class Base<T> {
|
|
fun noGeneric() {}
|
|
fun withOuter(): Outer? = null
|
|
fun withOwnAndOuter(t: T): Outer? = null
|
|
}
|
|
|
|
inner class <caret>Child : Base<SomeClass>()
|
|
}
|