aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb2.C
blob: b20002121a152a25ca34370d431d34ee818976ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link: 
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();
}