Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / treelang / execute / initial.tree
blob0daa99700192b5b8eacdd6b036d3f14abc510298
1 // { dg-do run }
2 // Tests whether initializtion works properly.
3 external_reference void abort ();
4 external_reference void exit (int code);
5 external_definition int main ();
7 main
9   automatic int aaa = +3;
11   if (aaa == +3)
12     { 
13       exit (0);
14     }
15   else
16     {
17       abort ();
18     }
19   return 0;