blob: 33fdb176e4adbdceed7a02bf2db2674a342996b7 [file] [log] [blame]
// Build don't link:
// GROUPS passed visibility
// visibility file
// From: wpsun4!xinforms!johnjo@uunet.uu.net (John D. Johnson)
// Date: Wed, 4 Aug 93 13:25:25 MDT
// Subject: Access to private 'operator new()'
// Message-ID: <9308041925.AA09825@xinforms.wpunix
#include <stdio.h>
#include <sys/types.h>
class X {
private:
void* operator new(size_t) throw(){// ERROR - .*
printf("Inside private new().\n");
return NULL;
}
public:
X() {}
};
int main(void)
{
X* p = new X;// ERROR - .*
}