mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
174 B
C#
12 lines
174 B
C#
using System; // CS8019
|
|
|
|
class Class
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var x = 2; // CS0219
|
|
return;
|
|
var y = 3; // CS0219, CS0162
|
|
}
|
|
}
|