replace diamond with type on inline when after inline diamond won't be inferred (IDEA-66142)

This commit is contained in:
anna
2011-03-08 11:27:13 +01:00
parent 7a2f03d06b
commit afd90a6695
7 changed files with 114 additions and 4 deletions
@@ -0,0 +1,9 @@
import java.util.*;
class Test {
void foo(){
Map<Integer, String> m<caret>ap = new HashMap<>();
Map<Integer, String> map1 = map;
}
}