
25 Mar
2005
25 Mar
'05
2:55 a.m.
Jason Hise wrote:
class test : public singleton < test > { // no constructors or destructor provided // all of the defaults are generated };
int main ( ) { client c; // should still be illegal, and fail to compile return 0; }
small correction, where it says 'client' it should read 'test': int main ( ) { */test/* c; // should still be illegal, and fail to compile return 0; } -Jason