diff options
Diffstat (limited to 't/t4018/csharp-property-braces-same-line')
-rw-r--r-- | t/t4018/csharp-property-braces-same-line | 10 |
1 files changed, 10 insertions, 0 deletions
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 + } + } +} |