B
Bart Jacobs
Dear VC++ team,
I am fairly certain I found a bug in VC++ 7.1.
I get the following error
========================================================================
Microsoft (R) C/C++ Standard Compiler Version 13.10.3077 for .NET Framework
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
test.cpp
test.cpp(3) : error C2653: 'xSystem' : is not a class or namespace name
test.cpp(3) : error C2143: syntax error : missing ',' before '*'
========================================================================
when I compile the following code:
==== Begin test.cpp ====================================================
#using <mscorlib.dll>
public __delegate void Test(int __gc * x, int * y);
int main() { return 0; }
==== End test.cpp ======================================================
using the following command line:
cl /clr test.cpp
which indicates some kind of buffer overflow or something, since the
name "xSystem" does not occur anywhere in the code.
Greetings
Bart Jacobs
I am fairly certain I found a bug in VC++ 7.1.
I get the following error
========================================================================
Microsoft (R) C/C++ Standard Compiler Version 13.10.3077 for .NET Framework
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
test.cpp
test.cpp(3) : error C2653: 'xSystem' : is not a class or namespace name
test.cpp(3) : error C2143: syntax error : missing ',' before '*'
========================================================================
when I compile the following code:
==== Begin test.cpp ====================================================
#using <mscorlib.dll>
public __delegate void Test(int __gc * x, int * y);
int main() { return 0; }
==== End test.cpp ======================================================
using the following command line:
cl /clr test.cpp
which indicates some kind of buffer overflow or something, since the
name "xSystem" does not occur anywhere in the code.
Greetings
Bart Jacobs