blob: cb4517f9c8282aacaff09460c85473c7c579d899 [file] [log] [blame]
class Test1 {
public static void method(Object o, boolean b) {
System.out.println("Object");
}
public static void method(String s, Object o) {
System.out.println("String");
}
public static void main(String[] args) {
<ref>method("Hello, World", false);
}
}