14 lines
243 B
Kotlin
Vendored
14 lines
243 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE_K1
|
|
package test
|
|
|
|
class SomeClass
|
|
|
|
open class TopLevel<Outer> {
|
|
open inner class Base {
|
|
fun noGeneric() {}
|
|
fun withOuter(): Outer? = null
|
|
}
|
|
inner class <caret>Child : Base()
|
|
}
|
|
|