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

	throw
	        ("error");

	throw
	        "error";

	throw
	        "error";

	throw
	        "error";

	throw

	        "error";
}