Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
local class shall not have member templates
Remarks
Templated member functions are not valid in a class that is defined in a function.
Example
The following example generates C2892:
// C2892.cpp
int main() {
struct local {
template<class T> // C2892
void f() {}
};
}