blob: 55226e940745adf516400f5250ee5ebbd10674b5 [file]
// ISSUE: KT-61101
open class A {
var x: Int = 0
private set
}
class B : A()
fun test() {
val b = B()
b.<!INVISIBLE_SETTER!>x<!> = throw Exception()
}