summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/throws.cpp
blob: 0419fc777e3c9b9d2b3354fef1d3a02c9ef27d50 (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";
}