summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/warning5.C
blob: 006713c03358d9fd79afb2c0539b602ca1b94bc3 (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
// { dg-do run  }
// { dg-options "-Wall" }
// PRMS Id: 5135
// Bug: g++ complains that the result of the new expression is not used.

extern "C" int printf (const char *, ...);
inline void * operator new (__SIZE_TYPE__, void *p) { return p; }

class foo {
public:
  foo() : a(42) {};
  int a;
};

int
main()
{
  char buffer[1024];

  new (buffer) foo;

  foo* pY = (foo *)buffer;

  return pY->a != 42;
}