------- Comment #2 from pinskia at gcc dot gnu dot org 2007-06-26 23:33 ------- Reduced testcase: namespace a { class basic_stringstream {}; typedef basic_stringstream istream; typedef basic_stringstream stringstream; } using namespace a; void PerformTest02 () { struct Manipulators { static istream & IgnoreSpace (istream & anInputStream) {} }; stringstream objStream; Manipulators::IgnoreSpace(objStream); }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32507