mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
13 lines
235 B
Java
13 lines
235 B
Java
import java.util.*;
|
|
|
|
class Test {
|
|
void foo() {
|
|
List<String> ls = <selection>new ArrayList<>()</selection>;
|
|
List<String> lss = new ArrayList<>();
|
|
List<Integer> li = new ArrayList<>();
|
|
}
|
|
|
|
void bar() {
|
|
foo();
|
|
}
|
|
} |