blob: 31dad773935233e98201a1735bd71e150b44ca57 [file] [log] [blame]
struct T;
T* manage(T* t);
template <class Obj> struct ObjectSlot0_ {
void create() {
void* tmp = manage(new T());
}
};