2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / init / new8.C
blob1fefc366ba80a8c45555bd25b1a59d7da10281e8
1 typedef __SIZE_TYPE__ size_t;
3 enum Refcount_Type {
4   NO_REFCOUNT
5 };
7 struct d0_Unknown_Object
9   void* operator new (size_t, size_t,  Refcount_Type type);
10   void operator delete (void*, size_t, Refcount_Type);
11   d0_Unknown_Object ();
14 void make ()
16   new (10, NO_REFCOUNT) d0_Unknown_Object;