aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/missing-loop-body.c
blob: 447815648b516be5630dcde274f7037ed5d422b1 (plain)
1
2
3
4
5
int main (void)
{
  int x = 10;
  while (x--) /* missing loop body */
}