1// { dg-do run  }
2// g++ 1.37.1 bug 900321_02
3
4// The following program exits with a nonzero status because the constructor
5// is not called 3 times as it should be.  This program exits with a zero
6// status when compiled with cfront 2.0.
7
8// Cfront 2.0 passes this test.
9
10// keywords: arrays, initialization, default constructor, operator new
11
12int call_count = 0;
13
14struct struct0 {
15  struct0 ();
16};
17
18struct0::struct0 () { call_count++; }
19
20typedef struct0 array[3];	// known dimension
21
22int test ()
23{
24  new array;
25  return (call_count != 3);
26}
27
28int main () { return test (); }
29