testdata for IDEA-67599

This commit is contained in:
anna
2012-10-23 18:07:08 +02:00
parent c8f56fcb28
commit 0a00c340b2
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
abstract class A<T, S extends T>
{
abstract S bar();
void foo(A<Cloneable[], ? extends Throwable[]> a)
{
int x = a.bar().length;
}
}