aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/warning5.C
blob: ffa8713ea640d85db0099a954db2ffb7e485c398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PRMS Id: 5135
// Bug: g++ complains that the result of the new expression is not used.
// Special g++ Options: -Wall

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

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

main()
{
  char buffer[1024];

  new (buffer) foo;

  foo* pY = (foo *)buffer;

  return pY->a != 42;
}