summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30713-fix_for_relational_operators.cpp
blob: 890f2eba9de71615d6c7ea3df5bbb48b28075b4a (plain)
1
2
3
4
5
6
7
8
void foo()
{
	while (a < b && c > d)
		i++;

	for  (  ; a < b && c > d; )
		i++;
}