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