blob: dfa3615c932cc9c95a3e9fefabe1f2746798f0ea [file]
// RUN_PIPELINE_TILL: FRONTEND
class A<T> {
public var x: Int = 0
private set
}
fun main() {
val a = A<Any>()
<!INVISIBLE_SETTER!>a.x<!> = 1
}
/* GENERATED_FIR_TAGS: assignment, classDeclaration, functionDeclaration, integerLiteral, localProperty, nullableType,
propertyDeclaration, typeParameter */