summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30132-sp_brace_catch.cpp
blob: 04c1b9c13b9b8b76edfa9fec72592fdbb778e016 (plain)
1
2
3
4
5
6
7
8
int foo()
{
	try { foo(bar); }catch (int *e) { return 0; }

	if (false) try { throw int(); }catch(...) {}

	return 1;
}