blob: 3ed4c9937d63a228794eba0e652c10c781884caf [file] [log] [blame]
class AAA {
private val x = 42
private val other = AAA()
fun getX(): Int {
return other.x
}
fun issue(): Boolean {
return true
}
}