mirror of
https://github.com/github/codeql.git
synced 2026-06-13 08:51:20 +02:00
12 lines
127 B
Java
12 lines
127 B
Java
import java.util.Random;
|
|
|
|
public class Test {
|
|
|
|
public static void test() {
|
|
|
|
(new Random()).nextInt(); // $ Alert
|
|
|
|
}
|
|
|
|
}
|