Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/function/covariantOverride.kt
T
2020-04-27 11:50:24 +03:00

11 lines
249 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()