summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t110/before/test.java
blob: 08a3229cd93249a4f0831d5213b7ab3f47e79f4c (plain)
1
2
3
4
5
6
7
8
import java.util.*;
public class Test {
  void method(List<Integer> l) {
    for (Integer integer : l) {
      System.out.println(integer.intValue());
    }
  }
}