aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-property
diff options
context:
space:
mode:
Diffstat (limited to 't/t4018/csharp-property')
-rw-r--r--t/t4018/csharp-property11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t4018/csharp-property b/t/t4018/csharp-property
new file mode 100644
index 0000000000..e56dfce34c
--- /dev/null
+++ b/t/t4018/csharp-property
@@ -0,0 +1,11 @@
+class Example
+{
+ public bool RIGHT
+ {
+ get { return true; }
+ set
+ {
+ // ChangeMe
+ }
+ }
+}