public class Callee { private static void foo(Object n) {} public static void foo(String s) {} }
public class Caller { public static void main(String[] args) { Callee.foo(""); } }
Find usages (with overloaded) invoked on private foo() returns "no usages" result, though there are usages of overloaded method.