7 lines
96 B
Kotlin
Vendored
7 lines
96 B
Kotlin
Vendored
open class A<out T> {
|
|
private open fun foo(t: T) {}
|
|
}
|
|
|
|
class B : A<String>() {
|
|
<caret>
|
|
} |