blob: 7b2814378d2847b15c39a9d87c5759e2fafb0a8a [file] [log] [blame]
import java.util.*;
class Test<T> {
Map<Integer, String> map;
T meth() {
return map.get(2);
}
}