summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/i1516.cpp
blob: e1fe3f7780130f1358d0c289648944256cfe59ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void myClass::foo() {
	int bar;
	std::string str;
	DbConfig::configuredDatabase()->apply(db);
	std::string str2;

	std::string str2;
	f();
	DbConfig::configuredDatabase()->apply(db);
	int bar;
	std::string str;

	std::string str2;
	f();
}