59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
20 lines
261 B
Kotlin
20 lines
261 B
Kotlin
// SIBLING:
|
|
class A {
|
|
class B {
|
|
fun test(): Int {
|
|
<selection>coFun()
|
|
return coProp + 10</selection>
|
|
}
|
|
|
|
default object {
|
|
val coProp = 1
|
|
|
|
fun coFun() {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|