Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.bugs / 900324_04.C
blob1d671d156e5e1111983bed5809ae7825d85b0143
1 // { dg-do assemble  }
2 // g++ 1.37.1 bug 900324_04
4 // g++ implements an extension which supports the copying of array objects.
6 // This extension is not described in the current C++ Reference Manual, and
7 // it is not implemented by cfront (2.0).
9 // g++ should generate errors for the use of this extension when -pedantic
10 // is used, however it does not.
12 // Cfront 2.0 passes this test.
14 // keywords: extension, pedantic, arrays, copy
16 typedef int int_array[20];
18 int_array ia1;
19 int_array ia2;
21 void function_0 ()
23   ia1 = ia2;            // { dg-error "" } gnu extension
26 int main () { return 0; }