// Build don't link: // GROUPS passed constructors // ctor file // Message-Id: <9302052351.AA10789@harvey> // From: greg@qualcomm.com (Greg Noel) // Subject: bug019.cc // Date: Fri, 5 Feb 93 15:51:42 -0800 #include class Class { class Err : public std::ostream { public: Err(void) : std::ostream(NULL) { } ~Err(void) { } }; public: //template Err& operator << (const T x) { return Err() << x; } Err& operator << (const char *x) { return Err() << x; }// ERROR - .* private: char x; };