blob: a9f693800f816553cbc04c9f80f4df23e709ca50 [file] [log] [blame]
// "Convert to atomic" "true"
class Test {
final int <caret>o;
int j = o;
Test(int o) {
this.o = o;
}
void foo() {
while ((o = j) != 0) {}
}
}