This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
specialization of implicitly-declared special member function
- To: egcs at cygnus dot com
- Subject: specialization of implicitly-declared special member function
- From: <nbecker at fred dot net>
- Date: Thu, 10 Sep 1998 14:36:59 -0400
Is this really an error? (Where is a copy of the standard available?)
template<class T>
class A {
public:
template<class I> A (const I& a, const I& b);
template<> A (int a, int b);
};
g++ -c Test.cc
Test.cc:6: specialization of implicitly-declared special member function