OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / init1.C
1 // { dg-do run  }
2 extern "C" void abort();
3
4 int i;
5 int j = i++;
6
7 int main()
8 {
9   if (i != 1)
10     abort();
11 }