blob: 7d05e771cff79d583af1d6738307fcda287c2b9c [file]
class A<T> {
public var x: Int = 0
private set
}
fun main() {
val a = A<Any>()
<!INVISIBLE_SETTER!>a.x<!> = 1
}