Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/invisibleSetter.kt
T
2023-01-31 08:39:43 +00:00

10 lines
133 B
Kotlin
Vendored

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