25 lines
198 B
Kotlin
Vendored
25 lines
198 B
Kotlin
Vendored
package source
|
|
|
|
class X {
|
|
companion object {
|
|
|
|
|
|
fun other() {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
fun f() {
|
|
bar++
|
|
}
|
|
}
|
|
|
|
|
|
fun foo() {
|
|
X.other()
|
|
bar++
|
|
}
|
|
|
|
var bar = 1
|
|
|