aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/array25.C
blob: 1ab2725d7cf5985c67bbadf877d5e2c3731b15d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// related to PR c++/38233
// test for value-init of a member array
// { dg-do run }

struct elt 
{
  virtual void f();
  char c;
};

void elt::f() { }

struct foo {
  elt buffer[500];
  foo() ;
  bool check () const;
};

foo::foo ()
  : buffer()
{}

bool foo::check () const
{
  for (unsigned ix = sizeof (buffer)/ sizeof (buffer[0]); ix--;)
    if (buffer[ix].c)
      return false;
  return true;
}

inline void *operator new (__SIZE_TYPE__ size, void *p)
{
  return p;
}

char heap[sizeof(elt[500])];

int main ()
{
  for (unsigned ix = sizeof (heap); ix--;)
    heap[ix] = ix;

  foo *f = new (heap) foo ();
  if (!f->check ())
    return 3;
  return 0;
}