mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
8 lines
168 B
Java
8 lines
168 B
Java
abstract class A {
|
|
abstract <T extends Iterable & Cloneable> void foo();
|
|
}
|
|
|
|
abstract class B extends A{
|
|
abstract <T extends Cloneable & Iterable> void foo();
|
|
}
|