mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:08:53 +07:00
6 lines
143 B
Java
6 lines
143 B
Java
// "Implement methods" "true-preview""
|
|
interface I<T> {
|
|
void m(I<? extends T> i, T v);
|
|
}
|
|
class I<caret>mpl implements I<? super Number> {
|
|
} |