119f6858cd
^KT-54311
16 lines
237 B
Kotlin
Vendored
16 lines
237 B
Kotlin
Vendored
package test
|
|
|
|
class SomeClass
|
|
|
|
class TopLevel<Outer> {
|
|
inner open class Base<T> {
|
|
fun withOuter(): Outer? = null
|
|
}
|
|
|
|
inner class Child : Base<SomeClass> {}
|
|
|
|
fun usage() {
|
|
Child().<caret>withOuter()
|
|
}
|
|
}
|