mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 07:15:01 +07:00
GitOrigin-RevId: 1e5c8e3319a9a45506e0785d4e7912d71f0233c6
8 lines
173 B
Java
8 lines
173 B
Java
class Test<T> {
|
|
|
|
static class Inner<I extends Integer, T>{
|
|
public void get(List<T> list, I i) {
|
|
<selection>list.get(i);</selection>
|
|
}
|
|
}
|
|
} |