Disambiguate the name lookup for the data type of anon_uint variable.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@119353 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/namespace/main.cpp b/test/namespace/main.cpp
index 24faf65..73fd15f 100644
--- a/test/namespace/main.cpp
+++ b/test/namespace/main.cpp
@@ -8,7 +8,7 @@
 //===----------------------------------------------------------------------===//
 
 namespace {
-    typedef unsigned int uint_t;
+    typedef unsigned int my_uint_t;
     int i; // Find the line number for anonymous namespace variable i.
 }
 
@@ -53,7 +53,7 @@
 
 int Foo::myfunc(int a)
 {
-    ::uint_t anon_uint = 0;
+    ::my_uint_t anon_uint = 0;
     A::uint_t a_uint = 1;
     B::uint_t b_uint = 2;
     Y::uint_t y_uint = 3;