a84b32af98
#KT-5492 Fixed
11 lines
189 B
Kotlin
11 lines
189 B
Kotlin
public class AAA {
|
|
public var x: Int = 42
|
|
private set
|
|
|
|
public fun foo(other: AAA) {
|
|
System.out.println(x)
|
|
System.out.println(other.x)
|
|
x = 10
|
|
}
|
|
}
|