summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t125/after/test.java
blob: 7854f476cc9eb5e54092677e553739682581a5b0 (plain)
1
2
3
4
5
6
7
import java.util.*;

class Test {
  public <U> List<U> meth(Integer p) {
    return Collections.singletonList(p);
  }
}