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 | 34fa29485d6e0b22f1f32852f34e483db0f90b0d (patch) | |
tree | f64aff1fdbfcb2ba48893607e1aa6fb05e5abb2d /test/SemaCXX/nested-name-spec.cpp | |
parent | ddc6ff6b9aff656504c1e84ee7dc9f617a20f866 (diff) |
Make this grossness default to the error it should always be.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108511 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaCXX/nested-name-spec.cpp')
-rw-r--r-- | test/SemaCXX/nested-name-spec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/nested-name-spec.cpp b/test/SemaCXX/nested-name-spec.cpp index acdec6183e..0dc1097e38 100644 --- a/test/SemaCXX/nested-name-spec.cpp +++ b/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 { |