git/t/t4018/csharp-exclude-other

class Example
{
    string Method(int RIGHT)
    {
        lock (this)
        {
        }
        unsafe
        {
            byte[] bytes = [1, 2, 3];
            fixed (byte* pointerToFirst = bytes)
            {
            }
        }

        return "ChangeMe";
    }
}