Topic: Borland Bug ?


Author: jean-claude.bourut@gsi.fr (JClaude Bourut)
Date: Thu, 4 Nov 1993 14:59:40 GMT
Raw View
The following program compiles under Borland C++. I think it's a bug


class foo
{
public:
    enum Bar {foofoo, foobar, barbar } ;

};

void main(){
    if ( !foo::Bar())
    {
    }
}