dfa inspection CCE analyzer should check erasures only

This commit is contained in:
peter
2013-08-05 16:39:28 +02:00
parent 9282d7a174
commit 012d1147d4
3 changed files with 16 additions and 10 deletions
@@ -0,0 +1,8 @@
import java.util.ArrayList;
class X {
public static void main(String[] args) {
Object list = new ArrayList<>();
ArrayList<String> list1 = (ArrayList<String>) list;
}
}