[gnu.g++.bug] private operator new bug

jjc@AI.MIT.EDU (10/24/89)

On a Sun 3, OS 3.4, g++ 1.36.0- (Oct 17 version) gets a segmentation
violation on this:

typedef unsigned long size_t;

class A {
  void *operator new(size_t);
 public:
  A();
};

void foo()
{
  A *p = new A;
}

cfront 2.0 accepts it.

James Clark