summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cs/620_getset-brace.cs
blob: f6ee63426697ba3e38af62c041bfabd0a47fa1e8 (plain)
1
2
3
4
5
6
7
class C
{
	float V {
		get {
			return _v; }
		set { _v = value; } }
}