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