59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
24 lines
279 B
Plaintext
24 lines
279 B
Plaintext
// SIBLING:
|
|
class A {
|
|
class B {
|
|
fun test(): Int {
|
|
return i()
|
|
}
|
|
|
|
default object {
|
|
val coProp = 1
|
|
|
|
fun coFun() {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private fun i(): Int {
|
|
A.B.coFun()
|
|
return A.B.coProp + 10
|
|
}
|
|
|
|
|