testdata for IDEA-57378

This commit is contained in:
anna
2012-10-23 18:07:11 +02:00
parent c97457bb07
commit 899d3e6d6b
2 changed files with 10 additions and 0 deletions
@@ -0,0 +1,9 @@
interface IA {
<T extends Cloneable & Iterable> void foo(T x);
<T extends Iterable & Cloneable> void foo(T x);
}
abstract class A<T extends Throwable> {
abstract <T extends Comparable<?> & Iterable> void foo(T x, A<?> y);
abstract <T extends Iterable & Comparable<?>> void foo(T x, A<? extends Throwable> y);
}