> #include <vector>
>
> int main( void )
> {
> std::vector<int> v;
>
> v.std::push_back(1);
>
> return 0;
> }
Thanks for your bug report. The mainline compiler (2.96 20000223
(experimental)) says
a.cc: In function `int main ()':
a.cc:7: `std' is not an aggregate type
so the bug has been fixed.
Regards,
Martin