27 lines
481 B
Kotlin
Vendored
27 lines
481 B
Kotlin
Vendored
open class A(
|
|
private val x: String,
|
|
private var y: Double
|
|
) {
|
|
fun foo() {
|
|
val r = {
|
|
if (x != "abc") throw AssertionError("$x")
|
|
if (y < 0.0) throw AssertionError("$y < 0.0")
|
|
y = 0.0
|
|
if (y != 0.0) throw AssertionError("$y")
|
|
}
|
|
r()
|
|
}
|
|
}
|
|
|
|
class B(
|
|
val x: String,
|
|
y: Double
|
|
) : A("abc", y)
|
|
|
|
fun box(): String {
|
|
A("abc", 3.14).foo()
|
|
val b = B("OK", 0.42)
|
|
b.foo()
|
|
return b.x
|
|
}
|