mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
172 B
Java
12 lines
172 B
Java
// "Create method 'foo'" "true"
|
|
interface Generic<T> {
|
|
List<List<T>> foo();
|
|
}
|
|
|
|
class Usage {
|
|
|
|
List<List<String>> usage(Generic<String> g) {
|
|
return g.foo();
|
|
}
|
|
}
|