summaryrefslogtreecommitdiff
path: root/test/regression/expr5.c
blob: b41aeb88d859d797941e2b37045d037058859c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

int foo(void)
{
   return 2;
}

int main(void)
{
   int g_46 = 0 || foo();
   printf ("%d\n", g_46);
   return 0;
}