[comp.lang.c++] cfront 2.0 bug 900210_02

rfg@paris.ics.uci.edu (Ronald Guilmette) (02/15/90)

// cfront 2.0 bug 900210_02

// Cfront core dumps on the following legal code.  This happens on two
// entirely different types of machines.

struct A {
  virtual void x() {}
  virtual ~A() {}
};

struct B : A {
  int x;
};

int main () { return 0; }