20 lines
241 B
Plaintext
Vendored
20 lines
241 B
Plaintext
Vendored
// SIBLING:
|
|
class MyClass {
|
|
fun test(): Int {
|
|
return i()
|
|
}
|
|
|
|
companion object {
|
|
val coProp = 1
|
|
|
|
fun coFun() {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
private fun i(): Int {
|
|
MyClass.coFun()
|
|
return MyClass.coProp + 10
|
|
}
|