blob: 14f22871955a104c61634c051fb87844943bdb74 [file]
// WITH_STDLIB
import kotlin.test.*
class Foo {
inner class Bar(x: Int, val y: Int = 1) {
constructor() : this(42)
}
}
fun box(): String {
assertEquals(1, Foo().Bar().y)
return "OK"
}