]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4018/csharp-exclude-other
Merge branch 'ba/osxkeychain-updates'
[thirdparty/git.git] / t / t4018 / csharp-exclude-other
1 class Example
2 {
3 string Method(int RIGHT)
4 {
5 lock (this)
6 {
7 }
8 unsafe
9 {
10 byte[] bytes = [1, 2, 3];
11 fixed (byte* pointerToFirst = bytes)
12 {
13 }
14 }
15
16 return "ChangeMe";
17 }
18 }