blob: 59a8caa78fba3386e52062073852a0ecc4c47c6d [file] [log] [blame]
package test0256;
import java.util.*;
public class Test {
public void bar() {
foo((Object) null);
}
void foo(String[] arg) {
}
void foo(Object arg) {
}
}