Share via


Compiler Error C2601 (Windows CE 5.0)

Send Feedback

'function' : local function definitions are illegal

Code tries to define a function within a function.

Or, there may be an extra brace in your source code before the location of the C2601 error.

The following example shows ways this error might occur.

int main()
{
int i = 0;

int funcname(int j)  // error
{
j++;
return j;
}

i = funcname(i);
return 0;
}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.