summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34554-throws.cpp
blob: f4e781fbdd183b819506831b2985d705d5f04d30 (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";
}