mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-11 22:25:56 +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();
|
|
}
|
|
} |