mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
9 lines
161 B
C#
9 lines
161 B
C#
class Bad
|
|
{
|
|
public static readonly string[] Foo = { "hello", "world" };
|
|
public static void Main(string[] args)
|
|
{
|
|
Foo[0] = "goodbye";
|
|
}
|
|
}
|