mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
14 lines
170 B
Java
14 lines
170 B
Java
abstract class A {
|
|
abstract <S, T extends Iterable<S>> void foo();
|
|
|
|
{
|
|
foo();
|
|
}
|
|
}
|
|
|
|
class X{
|
|
<T extends Enum<T>> void foo(){
|
|
foo();
|
|
}
|
|
}
|