summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34500-sp_before_case_colon.cpp
blob: 54507d647700c17bfc614adb4bc8e4f64a09f89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int foo(abc_t d)
{
	switch (d)
	{
	case A:
		return 0;
	case B:
		return 1;
	case C:
		return 2;
	}
}