summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/01071-various_colons.c
blob: e25134ab6d9028466696af890ca08faa1474f566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
struct foo {unsigned int a : 4;
	    int          b : 4;
};
int bar(int x){
	switch (x) {
	case 1: return 2;

	case 4: return 4;

	case 6: return 8;

	case 10: return 19;
	} return 0;
}
int main(void){
	bar(10);
foo:    bar(-9);
	bar(9);
baz:    return 0;
}