kittinunf
class Foo { companion object { fun sBar() { println("static bar") Foo().bar() } } fun bar() { println("instance bar") } }