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

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

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