Microsoft Visual C++ 2003 Function type typedef bug

Back to programming

// Ok
typedef void(One)(...);

int main()
{
    // Ok
    typedef void(Two)(...);

    {
        // Internal compiler error
        typedef void(Three)(...);
    }

    return 0;
}