blob: eb46f9f44215cd7b1d3f695ba16710be2b9f52a4 [file] [log] [blame]
class Pair<A, B> {
public final A first;
public final B second;
Pair(A first, B second) {
this.first = first;
this.second = second;
}
}
class Test {
void test(Pair<String, Integer> p) {
Pair<String, Integer> p2 = new Pair<String, Integer>(p.f<caret>);
}
}