summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30903-region.cpp
blob: d6e3403a5ccda9ecb61bf7b31516ac86b97b92b8 (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;
 #pragma region something
    int foo2 = 2;
 #pragma endregion
    int foo()
    {

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

}