The folowing code:namespace NamespaceA { namespace NamespaceB{ }}int main(){ using namespace NamespaceA::NamespaceB; auto a = []() {}; return 0;}generates this error:error C2871: 'NamespaceB' : a namespace with this name does not existThe error is reported at 'auto a = []() {};' line.
Visual Studio/Silverlight/Tooling version
What category (if any) best represents this feedback?
Steps to reproduce
Product Language
Operating System
Operating System Language
Actual results
Expected results
Please wait...