Path: utzoo!attcan!uunet!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!mips!bridge2!jarthur!uci-ics!gateway From: rfg@paris.ics.uci.edu (Ron Guilmette) Newsgroups: comp.lang.c++ Subject: cfront 2.0 bug 900205.04 Message-ID: <25D0C0B7.1787@paris.ics.uci.edu> Date: 8 Feb 90 00:43:35 GMT Organization: UC Irvine Department of ICS Lines: 15 // cfront bug 900205.04 // Cfront does not accept access specifiers (public, private, protected) // within the definition of a union. union union0 { public: /* gets error */ private: /* gets error */ protected: /* gets error */ };