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