blob: 239d867b52f0747d477bb9012f41d4891dc1e1f8 [file] [log] [blame]
// 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;
};
int
main()
{
char buffer[1024];
new (buffer) foo;
foo* pY = (foo *)buffer;
return pY->a != 42;
}