summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t126/after/test.java
blob: 7b2814378d2847b15c39a9d87c5759e2fafb0a8a (plain)
1
2
3
4
5
6
7
8
9
import java.util.*;

class Test<T> {
  Map<Integer, String> map;

  T meth() {
    return map.get(2);
  }
}