if (I->isCompleteDefinition() || I->isBeingDefined())
return I;
}
- // If there's no definition (not even in progress), return the most recent
- // declaration. This is important for template specializations, in order to
- // pick the declaration with the most complete TemplateSpecializationKind.
- return decl->getMostRecentDecl();
+ // If there's no definition (not even in progress), return what we have.
+ return decl;
}
TagDecl *TagType::getDecl() const {
template<typename T> void Helper<T>::func<2>() {} // expected-error {{cannot specialize a member}} \
// expected-error {{no function template matches}}
}
-
-namespace b35070233 {
- template <typename T> struct Cls {
- static void f() {}
- };
-
- void g(Cls<int>);
-
- template<> struct Cls<int>; // expected-note {{forward declaration}}
- template<> void Cls<int>::f(); // expected-error {{incomplete type}}
-}