[Bug c++/11617] [3.4 regression] g++ does not report missing member functions
reichelt at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Mon Jul 21 16:46:00 GMT 2003
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11617
------- Additional Comments From reichelt at gcc dot gnu dot org 2003-07-21 16:46 -------
This was almost the same code snippet as for PR 11616, so I forgot to further
reduce it. So here's a shorter testcase:
----------------------------------------------
struct B {};
template <typename T> struct C
{
virtual void bar() const { T::foo(); }
};
C<B> c;
----------------------------------------------
More information about the Gcc-bugs
mailing list