13 lines
173 B
Kotlin
Vendored
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
|
|
}
|
|
}
|