summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/c/Issue_3269.c
blob: 5b7de8e63cae1870b4e235ce88e0e3f7a3e567fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int main(void)
{
	int x = 0;

	while (x < 5)
	{
		x++;
	}

	do
	{
		x++;
	}
	while (x < 5);

	return 0;
}