The sixth batch
[git/gitster.git] / t / t4018 / csharp-exclude-init-dispose
blob2bc8e194e20bc35a629c91b6b0179f9e986baa00
1 using System;
3 class Example : IDisposable
5     string Method(int RIGHT)
6     {
7         new Example();
8         new Example(
9             );
10         new Example { };
11         using (this)
12         {
13         }
14         var def =
15             this is default(
16                 Example);
18         return "ChangeMe";
19     }
21     public void Dispose() {}