blob: 02fc40276a86badb0915a44351770fb6238f5819 [file] [log] [blame]
import java.util.concurrent.atomic.AtomicBoolean;
class Test {
AtomicBoolean b;
void foo() {
if (b.get()) {
b.set(true);
}
}
}