smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / AfterNewWithGenerics.java
blobeb46f9f44215cd7b1d3f695ba16710be2b9f52a4
1 class Pair<A, B> {
2 public final A first;
3 public final B second;
5 Pair(A first, B second) {
6 this.first = first;
7 this.second = second;
11 class Test {
12 void test(Pair<String, Integer> p) {
13 Pair<String, Integer> p2 = new Pair<String, Integer>(p.f<caret>);