Files
kotlin/compiler/testData/codegen/box/functions/defaultargs.kt
Juan Chen 4c04ad2371 FIR: Add bindings for dispatch receiver parameters
Before this commit, such descriptors have null owners, which causes problems when the getter of the owner property is called.
2019-12-27 10:13:44 +03:00

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"
}