12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
|
|
open class Foo {
|
|
open fun foo(x: CharSequence = "O"): CharSequence = x
|
|
}
|
|
class Bar(): Foo() {
|
|
override fun foo(x: CharSequence): String { // Note the covariant return type
|
|
return x.toString() + "K"
|
|
}
|
|
}
|
|
|
|
fun box() = Bar().foo()
|