blob: a0106ff8d66f5b055837832441cb0fec56d9a9f4 [file] [log] [blame]
import java.util.concurrent.atomic.AtomicReference;
class Test {
String s = "";
void foo() {
if (s == null) {
System.out.println(s);
}
}
}