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