mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
15 lines
239 B
Java
15 lines
239 B
Java
import java.util.List;
|
|
|
|
public class LiveTemplateTest {
|
|
|
|
void one() {
|
|
List<A.B<String>> list;
|
|
for (A.B<String> stringB : <selection>list</selection><caret>) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
class A {
|
|
static interface B<T> {}
|
|
} |