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

17 lines
235 B
Kotlin
Vendored

open class AAA {
var x = 42
protected set
fun foo(other: AAA) {
println(x)
println(other.x)
x = 10
}
}
internal class BBB : AAA() {
fun bar() {
println(x)
x = 10
}
}