mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 00:40:00 +07:00
6fe44eee73
(cherry picked from commit 58ced7b4e6be23577a1427c93a7b9c58a4edb5f3)
7 lines
81 B
Java
7 lines
81 B
Java
interface Generic<T> {
|
|
T foo();
|
|
}
|
|
|
|
class II implements Generic<?> {
|
|
<caret>
|
|
} |