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.
__identifier(identifier_1)and__identifier(identifier_2)are indistinguishable
Remarks
The compiler is unable to distinguish between _finally and __finally or __try and _try as a parameter passed to __identifier. You should not attempt to use them both as identifiers in the same program, as it will result in a C2374 error.
Example
The following example generates C4932:
// C4932.cpp
// compile with: /clr /W4 /WX
int main() {
int __identifier(_finally) = 245; // C4932
int __identifier(__finally) = 25; // C4932
}