summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30057-nl_inside_namespace.cpp
blob: 01486ebe7d7fbecb730fd9a6e9c52d45c4f85b0b (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
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();

}