a84b32af98
#KT-5492 Fixed
9 lines
113 B
Kotlin
9 lines
113 B
Kotlin
public class AAA {
|
|
public var x: Int = 42
|
|
private set
|
|
|
|
public fun foo() {
|
|
x = 10
|
|
}
|
|
}
|