blob: 6747030c9222dfb0d22c513257104317837003aa [file] [log] [blame]
public class Test {
void foo(String msg){}
void foo(Object o){}
void method(){
foo((String)null);
}
}