IDEA-103760

This commit is contained in:
anna
2013-03-27 09:20:02 +01:00
parent b9e10db650
commit f43401e162
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,9 @@
import java.util.*;
public class MyList extends ArrayList {}
public class Test {
public void test() {
List<? super List> list = new ArrayList<List>();
list.add(new MyList());
}
}