7c54024a22
#KT-8888 fixed
9 lines
151 B
Kotlin
Vendored
9 lines
151 B
Kotlin
Vendored
class A<T> {
|
|
public var x: Int = 0
|
|
private set
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A<Any>()
|
|
<!INVISIBLE_SETTER!>a.x<!> = 1
|
|
} |