mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
9 lines
193 B
Java
9 lines
193 B
Java
import java.util.*;
|
|
|
|
class Test {
|
|
void foo(final ArrayList<String> anObject) {
|
|
List<String> ls = anObject;
|
|
List<String> lss = anObject;
|
|
List<Integer> li = new ArrayList<>();
|
|
}
|
|
} |