diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-07-16 05:46:45 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-07-16 05:46:45 +0000 |
commit | eeb3c8419f5cfba7e54303ac041e021df918be83 (patch) | |
tree | e28427badb6f09f1426a418017971cb2ba62b5f3 /clang/test/SemaCXX/nested-name-spec.cpp | |
parent | 84336ba3f875fd7ffb5e5282dfce3649db681b29 (diff) | |
download | bcm5719-llvm-eeb3c8419f5cfba7e54303ac041e021df918be83.tar.gz bcm5719-llvm-eeb3c8419f5cfba7e54303ac041e021df918be83.zip |
Make this grossness default to the error it should always be.
llvm-svn: 108511
Diffstat (limited to 'clang/test/SemaCXX/nested-name-spec.cpp')
-rw-r--r-- | clang/test/SemaCXX/nested-name-spec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/nested-name-spec.cpp b/clang/test/SemaCXX/nested-name-spec.cpp index acdec6183ed..0dc1097e386 100644 --- a/clang/test/SemaCXX/nested-name-spec.cpp +++ b/clang/test/SemaCXX/nested-name-spec.cpp @@ -102,7 +102,7 @@ void f6(int A2::RC::x); // expected-error{{parameter declarator cannot be qualif int A2::RC::x; // expected-error{{non-static data member defined out-of-line}} -void A2::CC::NC::m(); // expected-warning{{out-of-line declaration of a member must be a definition}} +void A2::CC::NC::m(); // expected-error{{out-of-line declaration of a member must be a definition}} namespace E { |