mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
8 lines
182 B
Java
8 lines
182 B
Java
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
interface A
|
|
{
|
|
<S extends Cloneable & Comparable<?>> void foo(S x);
|
|
<S extends Comparable<?> & Cloneable> void foo(S x);
|
|
} |