mirror of
https://github.com/github/codeql.git
synced 2026-06-17 19:01:09 +02:00
13 lines
161 B
C#
13 lines
161 B
C#
using System;
|
|
|
|
public class test_variables
|
|
{
|
|
public static void f()
|
|
{
|
|
int x, y = 5;
|
|
x = 4;
|
|
x = y;
|
|
int z = y;
|
|
}
|
|
}
|