Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
'identifier' : looks like a function definition, but there is no parameter list.
The compiler detected what looked like a function, without the parameter list.
Example
The following sample generates C2473.
// C2473.cpp
// compile with: /clr /c
class A {
int i {} // C2473
};
class B {
int i() {} // OK
};