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