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