summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cs/10021-region.cs
blob: 926e467d00cd9af84d98f63245e15e04d4b33330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class X : Y {
    int foo1;
    #region something
	int foo2 = 2;
    #endregion
    int foo()
    {

	#region something else
	    int foo3 = 3;
	    #region nested
		int foo4 = 0;
	    #endregion
	    int foo5 = 0;
	#endregion
    }

}