mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +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);
|
|
}
|
|
}
|