blob: e738860c0392ce25ef8f1a47f140c8bc0037de85 [file]
// WITH_STDLIB
import kotlin.test.*
open class Foo(val x: Int = 42)
class Bar : Foo()
fun box(): String {
assertEquals(42, Bar().x)
return "OK"
}