Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/invisibleSetter.fir.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>()
a.<!INVISIBLE_SETTER!>x<!> = 1
}