aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-exclude-generic-method-calls
blob: 31af546665dfa73d4b838fefd9d52724d70db068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Example
{
    string Method(int RIGHT)
    {
        GenericMethodCall<int, int>(
            );

        return "ChangeMe";
    }

    string GenericMethodCall<T, T2>() => "test";
}