summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigrationByThreadLocal/directInt/before/Test.java
blob: 9039f28e9617aedede1e97046694e4ba87c3351b (plain)
1
2
3
4
5
6
7
8
9
10
11
class Test {
  int i;

  void foo() {
    i++;
    ++i;
    i--;
    --i;
    if (i == 0);
  }
}