This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug debug/32507] internal compiler error
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 26 Jun 2007 23:33:31 -0000
- Subject: [Bug debug/32507] internal compiler error
- References: <bug-32507-14757@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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