mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
Before this commit, such descriptors have null owners, which causes problems when the getter of the owner property is called.
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"
|
|
}
|