Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
local class shall not have member templates
Templated member functions are not valid in a class that is defined in a function.
The following sample generates C2892:
// C2892.cpp
int main() {
struct local {
template<class T> // C2892
void f() {}
};
}