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