This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/8116: ICE in member template function
- From: Reichelt <reichelt at igpm dot rwth-aachen dot de>
- To: gcc-gnats at gcc dot gnu dot org, yuvalk at mainsoft dot com, gcc-bugs at gcc dot gnu dot org, nobody at gcc dot gnu dot org
- Date: Sun, 27 Oct 2002 18:29:45 +0200
- Subject: Re: c++/8116: ICE in member template function
Hi,
here's a little cleaned-up testcase:
---------------------snip here------------------------
template <typename T> struct A { static int i; };
template <int*> struct B
{
template <typename U> void bar(U);
};
void foo()
{
B<&A<int>::i>().bar(0);
}
---------------------snip here------------------------
Greetings,
Volker
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=8116