summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cs/getset.cs
blob: 59aaa5bcf9b22973de7ffbc6c65e5abac6ac8e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public bool Enabled
{
get { return enabled; }
}


public bool Enabled
{
get
{
return enabled;
}
}