aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-property-braces-same-line
blob: 608131d3d316aa4ec47bfa8196fbf4f6efb589d7 (plain)
1
2
3
4
5
6
7
8
9
10
class Example
{
    public bool RIGHT {
        get { return true; }
        set
        {
            // ChangeMe
        }
    }
}