1 // Compile with "cl /c /Zi /GR- UsingNamespaceTest.cpp"
2 // Link with "link UsingNamespaceTest.obj /debug /nodefaultlib /entry:main"
3 
4 namespace NS {
5   int foo() { return 1; }
6 }
7 
8 using namespace NS;
9 int main(int argc, char **argv) {
10   return foo();
11 }
12