mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
10 lines
204 B
Java
10 lines
204 B
Java
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
class ExternalLibraryUsage {
|
|
public static void main(String[] args) {
|
|
List<?> foo = new ArrayList(); // Java Runtime
|
|
System.out.println(foo);
|
|
}
|
|
}
|