mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
lvti: guard SOE (IDEA-181104)
This commit is contained in:
@@ -56,4 +56,12 @@ class C extends B {}
|
||||
class X<T extends S, S> {
|
||||
T get() {return null;}
|
||||
void add(T t) {}
|
||||
}
|
||||
|
||||
class RecursiveBound {
|
||||
class C<T extends Comparable<T>> { }
|
||||
|
||||
void test(C<? super Integer> c) {
|
||||
var x = c;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user