Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/invisibleSetter.kt
T
Ivan Kochurkin afb85026c4 Revert "[FIR] Implement INVISIBLE_SETTER"
This reverts commit b3d7ed56
2021-08-02 20:10:22 +03:00

9 lines
132 B
Kotlin
Vendored

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