1// { dg-do assemble  }
2// g++ 1.37.1 bug 900324_04
3
4// g++ implements an extension which supports the copying of array objects.
5
6// This extension is not described in the current C++ Reference Manual, and
7// it is not implemented by cfront (2.0).
8
9// g++ should generate errors for the use of this extension when -pedantic
10// is used, however it does not.
11
12// Cfront 2.0 passes this test.
13
14// keywords: extension, pedantic, arrays, copy
15
16typedef int int_array[20];
17
18int_array ia1;
19int_array ia2;
20
21void function_0 ()
22{
23  ia1 = ia2;		// { dg-error "" } gnu extension
24}
25
26int main () { return 0; }
27