summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/34556-throws.cpp
blob: 6449e658d8c59c2d38957d22de38f3824427dcc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int main()
{
	throw "error";

	throw   "error";

	throw"error";

	throw "error";

	throw
	        "error";

	throw

	        "error";
}