mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
16 lines
269 B
C#
16 lines
269 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++)
|
|
{
|
|
Console.WriteLine(i + " " + j);
|
|
}
|
|
}
|
|
}
|
|
}
|