// PROBLEM: none class Test { companion object { fun f(x: Int, y: Int) = 1 } fun f(x: Int, y: String) = 2 fun test() { Companion.f(1, 2) } }