summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/10026-gcc_case_ellipsis.cpp
blob: b188c2105417f5841f38f834c79e22de7e6d52e4 (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
	}
}