summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t39/before/test.java
blob: 7ef08a9041c06998f688c1afd9626105d4630b98 (plain)
1
2
3
4
5
6
7
class Test {
  void foo(long i) {
    int i1 = i + 1;
    int i2 = i - 1;
    int i3 = i >> 1;
  }
}