testdata for IDEA-139090

This commit is contained in:
Anna Kozlova
2015-05-21 10:00:39 +02:00
parent 5eb8d5a8e6
commit c0258b3e2d
2 changed files with 15 additions and 0 deletions
@@ -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) { }
}