mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-06 01:41:08 +07:00
7 lines
118 B
Java
7 lines
118 B
Java
interface Bar<T> { }
|
|
|
|
interface Base<T> { }
|
|
|
|
class Foo<T,U> implements Base<U> {
|
|
void ge<caret>t(Bar<U> bar) { }
|
|
} |