mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
testdata for IDEA-63331
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
class A<T> {}
|
||||
|
||||
class B<T> {
|
||||
B(List<A<?>> list) {}
|
||||
}
|
||||
|
||||
public class Bug {
|
||||
|
||||
private static B case1(A<?> a) {
|
||||
return new B(Collections.singletonList(a));
|
||||
}
|
||||
|
||||
private static B case2(A<A> a) {
|
||||
return new B(Collections.singletonList(a));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(case1(new A()));
|
||||
System.out.println(case2(new A<A>()));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user