mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
14 lines
230 B
Java
Vendored
14 lines
230 B
Java
Vendored
package test;
|
|
|
|
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
class ListOfInt {
|
|
|
|
public static void hhh() {
|
|
List<Integer> list = new ArrayList<Integer>();
|
|
List<Integer> r = ListOfIntKt.ggg(list);
|
|
}
|
|
|
|
}
|