mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
testdata for IDEA-59290
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import java.util.*;
|
||||
class Test {
|
||||
{
|
||||
List<? super CharSequence> list = new ArrayList<CharSequence>();
|
||||
List<? super String> foo = list;
|
||||
System.out.println(foo);
|
||||
|
||||
List<? extends String> list1 = new ArrayList<String>();
|
||||
List<? extends CharSequence> foo1 = list1;
|
||||
System.out.println(foo1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user