mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
190 B
Java
10 lines
190 B
Java
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
class ListString {
|
|
public static void gg() {
|
|
List<String> list = new ArrayList<String>();
|
|
namespace.ff(list);
|
|
}
|
|
}
|