summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30912-long_namespace.cpp
blob: 80af6e839bfcacbed6d2f42f900599c6ec9e37d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace boo3 {
	int Fun1()
	{
		return 42;
	}
}

namespace boo4 {
	int Fun2()
	{
		int a = 7;
		int b = 8;
		return a+b;
	}
}