summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/10022-Issue_3269.c
blob: 6baef61ce2de88e7142f8711449813d21bf2e3e2 (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;
}