Compiler Error C2929

'identifier' : explicit instantiation; cannot explicitly force and suppress instantiation of template-class member

There was an attempt to explicitly instantiate identifier as well as prevent it from being instantiated. The following code generates this error:

template A<int>::A();
extern template A<int>::A();  // error