20 lines
263 B
Kotlin
Vendored
20 lines
263 B
Kotlin
Vendored
// SIBLING:
|
|
class A {
|
|
class B {
|
|
fun test(): Int {
|
|
<selection>coFun()
|
|
return coProp + 10</selection>
|
|
}
|
|
|
|
companion object {
|
|
val coProp = 1
|
|
|
|
fun coFun() {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|