diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-23 23:17:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-23 23:17:07 +0000 |
commit | 03c4041cb517a709d0ef514731124690d2a485b8 (patch) | |
tree | 7b1202850dfb3b17b12512098936752e701c3f86 /clang/test/SemaCXX/nested-name-spec.cpp | |
parent | 0369c57ac6794c82ef3b35f2e6cae9e46debc4f7 (diff) | |
download | bcm5719-llvm-03c4041cb517a709d0ef514731124690d2a485b8.tar.gz bcm5719-llvm-03c4041cb517a709d0ef514731124690d2a485b8.zip |
make the 'to match this' diagnostic a note.
llvm-svn: 59921
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 8e7e17af9d9..b6032e64946 100644 --- a/clang/test/SemaCXX/nested-name-spec.cpp +++ b/clang/test/SemaCXX/nested-name-spec.cpp @@ -72,4 +72,4 @@ void f3() { } // make sure the following doesn't hit any asserts -void f4(undef::C); // expected-error {{use of undeclared identifier 'undef'}} // expected-error {{expected ')'}} expected-error {{to match this '('}} // expected-error {{variable has incomplete type 'void'}} +void f4(undef::C); // expected-error {{use of undeclared identifier 'undef'}} // expected-error {{expected ')'}} expected-note {{to match this '('}} // expected-error {{variable has incomplete type 'void'}} |