Errore del compilatore C3264
'class': il costruttore di classe non può avere un tipo restituito
I costruttori di classe non possono avere tipi restituiti.
L'esempio seguente genera l'errore C3264:
// C3264_2.cpp
// compile with: /clr
ref class X {
public:
static int X() { // C3264
}
/* use the code below to resolve the error
static X() {
}
*/
};
int main() {
}