]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4018/csharp-exclude-init-dispose
The seventh batch
[thirdparty/git.git] / t / t4018 / csharp-exclude-init-dispose
CommitLineData
ec0e3075
SJ
1using System;
2
3class Example : IDisposable
4{
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);
17
18 return "ChangeMe";
19 }
20
21 public void Dispose() {}
22}