testdata for IDEA-57339

This commit is contained in:
anna
2012-05-03 09:19:01 +02:00
parent 0ee759c3b8
commit cf8ab78b59
2 changed files with 8 additions and 0 deletions
@@ -0,0 +1,7 @@
abstract class A {
abstract <T extends Iterable & Cloneable> void foo();
}
abstract class B extends A{
abstract <T extends Cloneable & Iterable> void foo();
}