mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
213 B
Java
12 lines
213 B
Java
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
class ListOfInt {
|
|
|
|
public static void hhh() {
|
|
List<Integer> list = new ArrayList<Integer>();
|
|
List<Integer> r = namespace.ggg(list);
|
|
}
|
|
|
|
}
|