summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigrationByAtomic/directByte/before/Test.java
blob: fa494c28a3c49037a632b7d531dfe886e44be654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Test {
    byte b = 0;

    void bar() {
        if (b == 0) {
            b++;
            b += 0;
            //System.out.println(b + 10);
            System.out.println(b);
        }
    }
}