mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
13 lines
169 B
Java
13 lines
169 B
Java
abstract class A {
|
|
abstract <S, T extends Iterable<S>> void foo();
|
|
|
|
{
|
|
foo();
|
|
}
|
|
}
|
|
|
|
class X{
|
|
<T extends Enum<T>> void foo(){
|
|
foo();
|
|
}
|
|
} |