blob: 01d694a65f15e697f56b3f8af9559216dd1a3991 [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();
}