summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t44/before/test.java
blob: 4dee20b44e33e83ab7bc7cde78e3e9d0c86c63a4 (plain)
1
2
3
4
5
6
7
class Test {
  long l;
  int i;
  void foo() {
    l = i;
  }
}