r184382 - Fix r184381 so the test doesn't fail. Sorry for the inconvenience, I thought I had checked it.
Eli Friedman
eli.friedman at gmail.com
Wed Jun 19 16:00:37 PDT 2013
Author: efriedma
Date: Wed Jun 19 18:00:37 2013
New Revision: 184382
URL: http://llvm.org/viewvc/llvm-project?rev=184382&view=rev
Log:
Fix r184381 so the test doesn't fail. Sorry for the inconvenience, I thought I had checked it.
Modified:
cfe/trunk/test/SemaCXX/nested-name-spec.cpp
Modified: cfe/trunk/test/SemaCXX/nested-name-spec.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/nested-name-spec.cpp?rev=184382&r1=184381&r2=184382&view=diff
==============================================================================
--- cfe/trunk/test/SemaCXX/nested-name-spec.cpp (original)
+++ cfe/trunk/test/SemaCXX/nested-name-spec.cpp Wed Jun 19 18:00:37 2013
@@ -309,4 +309,4 @@ namespace N {
}
namespace TypedefNamespace { typedef int F; };
-TypedefNamespace::F::foo BadNNSWithCXXScopeSpec; // expected-error {{expected a class or namespace}}
+TypedefNamespace::F::NonexistentName BadNNSWithCXXScopeSpec; // expected-error {{expected a class or namespace}}
More information about the cfe-commits
mailing list