Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'name' : a namespace or class of this name does not exist
You made reference to a namespace or class that is not defined.
The following sample generates C2878:
// C2878.cpp
// compile with: /c
namespace A {}
namespace B = C; // C2878 namespace C doesn't exist
namespace B = A;