blob: a3066303b38b67a4565f1c131db19325dc455e05 [file] [log] [blame]
import java.util.*;
public class Foo {
{
Map<Pair<Object, Object>, Object> map;
map.get(<caret>)
}
}
class Pair<A, B> {
Pair(A a, B b) {}
static <A,B> Pair<A,B> create(A a, B b) {}
}