I can confirm this :
Example code :
class MyBase
{
int m_Base;
};
class MyDerived : public Base
{
int m_Derived;
};
int main()
{
return 0;
} // end of main
Also note : there seems to be an endless chain of base->derived->base-> derived and so on ....
Could you please file it at berlios ? Copy past in there the example code.