This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
BUG: Pointer to template function in namespace
- To: bug-gcc at gnu dot org
- Subject: BUG: Pointer to template function in namespace
- From: Olaf Dietsche <olaf dot dietsche at gmx dot net>
- Date: 15 May 2000 20:39:34 +0200
Hi,
i got an internal compiler error. You can reproduce the bug with the
source below. If you need further information, please ask.
Regards, Olaf.
$ g++ -v
Reading specs from /opt/gcc-2.95.2/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/specs
gcc version 2.95.2 19991024 (release)
$ uname -a
Linux tigram 2.2.11 #3 Wed Apr 26 11:47:05 CEST 2000 i686 unknown
bug.C:
--8<--cut here---
struct X {
};
namespace N {
template<class T> void signal_function ();
};
void f ()
{
typedef void (*PF) ();
PF x = &N::signal_function<X>;
}
--cut here-->8---
$ g++ -c bug.C
bug.C: In function `void f()':
bug.C:11: Internal compiler error 373.
bug.C:11: Please submit a full bug report.bug.C:11: See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for instructions.