class A { companion object { fun create() = "Hello" } } fun test() { val s = A.Companion.create() // redundant Companion reference }