blob: 56bd1c8e9fdbba98573bba42e6510204f13accce [file] [log] [blame]
package source
class X {
companion object {
fun other() {
foo()
}
}
fun f() {
bar++
}
}
fun foo() {
X.other()
bar++
}
var bar = 1