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

	throw  ("error");

	throw"error";

	throw "error";

	throw"error";

	throw"error";
}