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.
'namespace' : namespace uses itself
A namespace is used recursively.
The following sample generates C4515:
// C4515.cpp
// compile with: /W4
namespace A
{
using namespace A; // C4515
}
int main()
{
}