Sorry Paolo, that definitely should have been. === THIS CODE FAILS TO LINK === template <typename T> class foo { public: foo() =default; // <<--- this works fine. ~foo(); };
template <typename T> foo<T>::~foo() =default; <<--- ERROR: This doesn't get built by the compiler. // foo<T>::~foo() {}; <<-- replacing with this line fixes the error. int main() { foo<int> fi; return 0; } =================== Not === THIS CODE FAILS TO COMPILE === ... Still, shouldn't the <int> version of "foo<T>::~foo() =default;" be built by the compiler since it's called by main(). Is this a bug? Should I update my gcc and go retest? Does it fail to link for you? (or anyone else)? Also, yes I am using a snapshot, I couldn't figure out how to get the mainline (trunk?) 4.4 version, all I got was 4.3 using svn. Then again I'm new to svn and building gcc.