summaryrefslogtreecommitdiff
path: root/t/t4018/csharp-exclude-other
diff options
context:
space:
mode:
Diffstat (limited to 't/t4018/csharp-exclude-other')
-rw-r--r--t/t4018/csharp-exclude-other18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/t4018/csharp-exclude-other b/t/t4018/csharp-exclude-other
new file mode 100644
index 0000000..4d5581c
--- /dev/null
+++ b/t/t4018/csharp-exclude-other
@@ -0,0 +1,18 @@
+class Example
+{
+ string Method(int RIGHT)
+ {
+ lock (this)
+ {
+ }
+ unsafe
+ {
+ byte[] bytes = [1, 2, 3];
+ fixed (byte* pointerToFirst = bytes)
+ {
+ }
+ }
+
+ return "ChangeMe";
+ }
+}