Imrpove the note text for when a non-type decl hides a tag type
llvm-svn: 155723
diff --git a/clang/test/Parser/cxx-using-declaration.cpp b/clang/test/Parser/cxx-using-declaration.cpp
index 8c60b9b..320fd09 100644
--- a/clang/test/Parser/cxx-using-declaration.cpp
+++ b/clang/test/Parser/cxx-using-declaration.cpp
@@ -51,7 +51,7 @@
class Bar {};
}
-void Bar(int); // expected-note{{non-type 'Bar' shadowing class 'Bar' declared here}}
+void Bar(int); // expected-note{{class 'Bar' is hidden by a non-type declaration of 'Bar' here}}
using foo::Bar;
void ambiguity() {