blob: 1770416a0295d7a10047178878207ba1105c655f [file] [log] [blame]
class Test {
String s = "";
void foo() {
if (s == null) {
System.out.println(s);
}
}
}