summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/nl_inside_namespace.cpp
blob: 4bdcb39481be544274c182e8c31d5da4b942e66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace cats
{ // rule


int count;
void meow();


}

namespace dogs { // drool


int count;
void bark();


}

namespace pigs {


int count;
void oink();


}

namespace owls
{


int count;
void hoot();


}