aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-method-params
diff options
context:
space:
mode:
Diffstat (limited to 't/t4018/csharp-method-params')
-rw-r--r--t/t4018/csharp-method-params10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t4018/csharp-method-params b/t/t4018/csharp-method-params
new file mode 100644
index 0000000000..3f00410ba1
--- /dev/null
+++ b/t/t4018/csharp-method-params
@@ -0,0 +1,10 @@
+class Example
+{
+ string Method(int RIGHT, int b, int c = 42)
+ {
+ // Filler
+ // Filler
+
+ return "ChangeMe";
+ }
+}