Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DifferentFieldName.kt
T
2015-09-25 13:02:46 +03:00

11 lines
141 B
Kotlin
Vendored

class AAA {
var x = 42
private set
fun foo(other: AAA) {
println(x)
println(other.x)
x = 10
}
}