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

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