aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/oread/tests/run_declare3.c
blob: cccfdb7cb2f707c996223fabb24a30038e118344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int main1 (int a)
{
  int b;
  int z;

  b = a;

  {
    int g;
    int c;

    c = b;
    g = c;
    z = g + c;
  }
  return z + 1;
}