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,8 @@
import java.util.*;
class Test {
void foo(){
System.out.println(new HashMap<Integer, String>());
}
}