summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10027-oneline_property.cs
blob: e4470be29444da62dd0dfd5c47aa4df05331a96e (plain)
1
2
3
4
5
6
7
8
9
public class Class
{
    public float prop { get; set; }
    public float prop { get { return m; } }
    public float prop { set { m = value; } }
    public float prop { get { return m; } set { m = value; } }
    internal int prop { get { return m; } }
};
public class Container { public int prop { get; set; } };