summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/Issue_2387.cpp
blob: af00e16e2fd849cf71201b30d1af0c438f5e56b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace bar
{
void none();
};

void foo()
{
	namespace // does not
	x         // start a
	=         // namespace
	bar;

	x::none();
}