mirror of
https://github.com/github/codeql.git
synced 2026-07-23 20:22:02 +02:00
9 lines
172 B
C#
9 lines
172 B
C#
class Bad
|
|
{
|
|
public static readonly string[] Foo = { "hello", "world" }; // $ Alert
|
|
public static void Main(string[] args)
|
|
{
|
|
Foo[0] = "goodbye";
|
|
}
|
|
}
|