nonstandard extension used : access to 'classname' now defined to be 'access specifier', previously it was defined to be 'access specifier'
Under ANSI compatibility (/Za), you cannot change the access to a nested class. Under the default Microsoft extensions (/Ze), you can, with this warning.
Example
class X { private: class N; public: class N { }; };