explicit -> diamond: ignore invalid types (IDEA-155017)

This commit is contained in:
Anna.Kozlova
2016-04-20 19:13:20 +02:00
parent e191bc72dd
commit a12bdff8a1
2 changed files with 43 additions and 33 deletions
@@ -0,0 +1,10 @@
// "Replace with <>" "false"
import java.util.ArrayList;
class BaseClass {}
public class IllegalStringException {
void foo() {
Map<StList<BaseClass> listBaseClass = new ArrayList<BaseC<caret>lass>();
}
}