accept raw substitutors during diamonds inference (IDEA-124836)

This commit is contained in:
Anna Kozlova
2014-05-07 15:35:58 +04:00
parent 7e86caa1d4
commit d83af543fc
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,6 @@
import java.util.*;
class Sample {
public static List getList() {return null;}
List<Integer> list = new ArrayList<>(getList());
}