blob: c9b02919c207d01e6bfe3a3d20ebbfd36934bf10 [file]
// RUN_PIPELINE_TILL: FRONTEND
// 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()
}
/* GENERATED_FIR_TAGS: assignment, classDeclaration, functionDeclaration, integerLiteral, localProperty,
propertyDeclaration */