diff options
Diffstat (limited to '')
-rw-r--r-- | t/t4018/csharp-property | 11 | ||||
-rw-r--r-- | t/t4018/csharp-property-braces-same-line | 10 |
2 files changed, 21 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 + } + } +} diff --git a/t/t4018/csharp-property-braces-same-line b/t/t4018/csharp-property-braces-same-line new file mode 100644 index 0000000..608131d --- /dev/null +++ b/t/t4018/csharp-property-braces-same-line @@ -0,0 +1,10 @@ +class Example +{ + public bool RIGHT { + get { return true; } + set + { + // ChangeMe + } + } +} |