blob: 073ebd30eb4a71462e257ec7f03d9f2707e8c71a [file] [log] [blame]
package bugs_in;
public class Test_44419_2 {
public void foo() {
String s= null;
if (!/*]*/isString(s)/*[*/) {
}
}
boolean isString(Object o) {
return o instanceof String;
}
}