git/t/t4018/csharp-method-modifiers

using System.Threading.Tasks;

class Example
{
    static internal async Task Method(int RIGHT)
    {
        // Filler
        // Filler
        
        // ChangeMe
        await Task.Delay(1);
    }
}