summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/intentions/atomic/before7.java
blob: fd2d066a4337f80557b4658daa944519954338a6 (plain)
1
2
3
4
5
6
7
8
9
// "Convert to atomic" "true"
class Test {
  int <caret>o = 0;
  int j = o;

  void foo() {
    while ((o = j) != 0) {}
  }
}