summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/10026-gcc_case_ellipsis.cpp
blob: 852360a4ebd0c5d557cc2534e5083aa10b634db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void f(int i)
{
	switch(i)
	{
	case 1 ... 2:
	{
		break;
	}
	case 3 ...       5:
		break;

	default:
		break
	}
}