mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: 7a79b6ab5ddd209bd036cdc0203a9a139877ab0c
6 lines
71 B
Java
6 lines
71 B
Java
interface I<T> {
|
|
void m(T t);
|
|
}
|
|
class M extends I<Void> {
|
|
<caret>
|
|
} |