mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-103760
This commit is contained in:
+9
@@ -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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user