Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!uunet!synaptx!glenn From: glenn@synaptx.Synaptics.Com (Glenn Gribble) Newsgroups: comp.lang.c++ Subject: cfront bug Message-ID: <1022@synaptx.Synaptics.Com> Date: 5 Jul 90 22:04:29 GMT Reply-To: glenn@synaptics.com (Glenn Gribble) Organization: Synaptics Inc., San Jose, CA Lines: 16 System: Sun 3/280, Sun C++, /* <> */ The following bit of C++ generates illegal C code: int x; int y = x = 0; Generates the following C code: int x = 0 ; int y = (x = 0 ); Ooops. -- Glenn Gribble glenn@synaptics.com uunet!synaptx!glenn