mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
183 B
Java
9 lines
183 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);
|
|
}
|