mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
210 B
Kotlin
Vendored
13 lines
210 B
Kotlin
Vendored
open abstract class B {
|
|
fun foo(arg: Int = 239 + 1) : Int = arg
|
|
}
|
|
|
|
class C() : B() {
|
|
}
|
|
|
|
fun box() : String {
|
|
if(C().foo(10) != 10) return "fail"
|
|
if(C().foo() != 240) return "fail"
|
|
return "OK"
|
|
}
|