class C { companion object { fun t() = x val x = 45 } } fun test(): Int { return (C.Companion::x).get() }