Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/FalseGetter.kt
T
2015-09-29 18:32:25 +03:00

13 lines
173 B
Kotlin
Vendored

class AAA {
private val x = 42
private val other = AAA()
fun getX(): Int {
return other.x
}
fun issue(): Boolean {
return true
}
}