Files
kotlin-fork/j2k/tests/testData/ast/dropAccessors/DifferentFieldName.kt
T
2014-10-14 21:23:24 +04:00

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
}
}