mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 19:29:30 +07:00
testdata for IDEA-139090
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface I<T extends I<T>> {
|
||||
T foo();
|
||||
}
|
||||
|
||||
class C {
|
||||
void baz(I<?> x) {
|
||||
bar(x.foo(), x);
|
||||
}
|
||||
|
||||
<T> void bar(T x, T y) { }
|
||||
}
|
||||
Reference in New Issue
Block a user