The parser crashes without error message e.g. on a
following valid C++ class definition:
-------------
class A
{
enum eAX {one, two, three};
A::eAX A::GetThis();
};
--------------
Removing the extra (but valid) class specifiers "A::"s
from the definition works. I.e. the parser does not like
too explicit class definition.
Loimu.