summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/expected/cpp/30919-Issue_2387.cpp
blob: 526278d67ad3ad649bf4feb70ac4399efb85f6b7 (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();
}