◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2267 'function' : block scoped static functions are illegal The specified local function was declared as static. Static functions must be declared with global scope. The following is an example of this error: void main() { static int func1(); // error } -♦-