[comp.lang.c++] cfront 2.0 bug 900205.04

rfg@paris.ics.uci.edu (Ron Guilmette) (02/08/90)

// 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 */

};