With the following source I get an internal error. If I take out the
#include <vector> line it compiles with a proper error.
That's with egcs-2.91.57 19980901
Paris
----------------------
#include <vector>
class foo{};
main()
{
foo f;
f.vector();
}