mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
11 lines
154 B
Java
11 lines
154 B
Java
// "Create method 'foo'" "true"
|
|
interface Generic<T> {
|
|
}
|
|
|
|
class Usage {
|
|
|
|
List<List<String>> usage(Generic<String> g) {
|
|
return g.fo<caret>o();
|
|
}
|
|
}
|