rt_gccstream/gcc/testsuite/g++.old-deja/g++.robertl/eb2.C

18 lines
242 B
C

// { dg-do assemble }
typedef __SIZE_TYPE__ size_t;
inline void *operator new(size_t, void *place) throw() { return place; }
struct A
{
A();
~A();
};
void testfunc( void )
{
A* mybuf;
A v[1];
new (mybuf) A();
}