aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-exclude-init-dispose
blob: 2bc8e194e20bc35a629c91b6b0179f9e986baa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

class Example : IDisposable
{
    string Method(int RIGHT)
    {
        new Example();
        new Example(
            );
        new Example { };
        using (this)
        {
        }
        var def =
            this is default(
                Example);

        return "ChangeMe";
    }

    public void Dispose() {}
}