Files
codeql/csharp/ql/test/query-tests/Likely Bugs/NestedLoopsSameVariable/NestedLoopsSameVariable.cs
2026-07-07 14:09:48 +01:00

16 lines
280 B
C#

using System;
class NestedLoopsSameVariable
{
static void Main(string[] args)
{
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 2; i++) // $ Alert
{
Console.WriteLine(i + " " + j);
}
}
}
}