blob: c964177c3d78f0ec50c8ed54b9cc8720ee4957dd [file] [log] [blame]
abstract class A {
abstract <T extends Iterable & Cloneable> void foo();
}
abstract class B extends A{
abstract <T extends Cloneable & Iterable> void foo();
}