Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!wuarchive!usc!orion.oac.uci.edu!uci-ics!gateway From: rfg@paris.ics.uci.edu (Ronald Guilmette) Newsgroups: comp.lang.c++ Subject: cfront 2.0 bug 900210_02 Message-ID: <25DA6484.22778@paris.ics.uci.edu> Date: 15 Feb 90 08:12:52 GMT Organization: UC Irvine Department of ICS Lines: 15 // 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; }