b8a64d20ac
^KT-54311 ^KT-54385
15 lines
201 B
Kotlin
Vendored
15 lines
201 B
Kotlin
Vendored
// IGNORE_FE10
|
|
|
|
package test
|
|
|
|
class SomeClass
|
|
|
|
fun <Outer> topLevel() {
|
|
open class Base {
|
|
fun withOuter(): Outer? = null
|
|
}
|
|
|
|
class Child : Base() {}
|
|
|
|
Child().<caret>withOuter()
|
|
} |