summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/02330-one_liners.c
blob: 57d8ba449027eb1229933455c323d11de76de01c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int baz() { return 0; }

int main()
{
	int a, b;
	int f[2] = { 1, 2 };
	enum foo { BAR = 15 };
	if (1) { a++; b++; }
	while (0) { a++; b++; }
	do { a++; b++; } while (0);
	for (;;) { a++; b++; };
}