mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
17 lines
225 B
Java
17 lines
225 B
Java
package successors;
|
|
|
|
public class LoopVarReadTest {
|
|
public static void testLoop()
|
|
{
|
|
int x = 2;
|
|
for (int y = 0; y < 10; y += x)
|
|
{
|
|
System.out.println("Foo");
|
|
}
|
|
|
|
int q = 10;
|
|
|
|
System.out.println("foo");
|
|
}
|
|
}
|