mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
4 lines
149 B
Java
4 lines
149 B
Java
import java.util.*;
|
|
interface X { Iterable m(Iterable<String> arg); }
|
|
interface Y { Iterable<String> m(Iterable arg); }
|
|
interface Foo extends X, Y {} |