mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 11:06:58 +07:00
8 lines
119 B
Java
8 lines
119 B
Java
interface Bar<T> { }
|
|
|
|
interface Base<T> {
|
|
default void get(Bar<T> bar) { }
|
|
}
|
|
|
|
class Foo<T,U> implements Base<U> {
|
|
} |