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