summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/11011-620_getset-brace.cs
blob: d4652c5ffb98a3cc9da2c6bb48ebd963c6eac042 (plain)
1
2
3
4
5
6
7
8
9
10
class C
{
	float V
	{
		get
		{
			return _v;
		}
		set { _v = value; } }
}