aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/c/simple_op.c
blob: 7c43b081afc495e29805273ea1f89764630e9bd3 (plain)
1
2
3
4
5
6
7
8
int main(int argc, char ** argv)
{
  int n, m;
  n = n + 1;
  n = n * 7;
  n / (8 - 2);
  return n;
}