aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-exclude-method-calls
blob: 51e2dc204073df2ae8c5b761ff5793dd5187aecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Example
{
    string Method(int RIGHT)
    {
        MethodCall();
        MethodCall(1, 2);
        MethodCall(
            1, 2);
        MethodCall(
            1, 2,
            3);
        MethodCall(
            1, MethodCall(),
            2);

        return "ChangeMe";
    }

    int MethodCall(int a = 0, int b = 0, int c = 0) => 42;
}