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

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