summaryrefslogtreecommitdiff
path: root/test/regression/expr2.c
blob: 66c563f2da306d91d4dff136d0897c3f70f848b3 (plain)
1
2
3
4
5
6
7
8
extern int f(int);

void g(int x)
{
  if (x > 0) {
    (void) f(x - 1);
  }
}