]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4018/csharp-method-params
Merge branch 'jt/reftable-geometric-compaction'
[thirdparty/git.git] / t / t4018 / csharp-method-params
1 class Example
2 {
3 string Method(int RIGHT, int b, int c = 42)
4 {
5 // Filler
6 // Filler
7
8 return "ChangeMe";
9 }
10 }