diff options
Diffstat (limited to 'test/Parser/cxx-using-declaration.cpp')
-rw-r--r-- | test/Parser/cxx-using-declaration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Parser/cxx-using-declaration.cpp b/test/Parser/cxx-using-declaration.cpp index 8c60b9b7a2..320fd09e55 100644 --- a/test/Parser/cxx-using-declaration.cpp +++ b/test/Parser/cxx-using-declaration.cpp @@ -51,7 +51,7 @@ namespace foo { 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() { |