diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-25 19:25:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-25 19:25:39 +0000 |
commit | 3e5e960572b51415fe2faf0ae2eb376cd96b1f32 (patch) | |
tree | a50e98633fa8d95ca8fdc9b1c6cddaf8a2f26f1f /clang/test/CXX/basic | |
parent | 5c80a27ba26431c9f88d80edbbe61c562c5f9950 (diff) | |
download | bcm5719-llvm-3e5e960572b51415fe2faf0ae2eb376cd96b1f32.tar.gz bcm5719-llvm-3e5e960572b51415fe2faf0ae2eb376cd96b1f32.zip |
Tweak expected error message, although we still fail this test
llvm-svn: 89875
Diffstat (limited to 'clang/test/CXX/basic')
-rw-r--r-- | clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp b/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp index cebc3e99d09..418059dc74c 100644 --- a/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp +++ b/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp @@ -13,5 +13,5 @@ try { } catch (int a) { // expected-error {{redefinition of 'a'}} int b; // expected-error {{redefinition of 'b'}} - ++c; // expected-error {{use of undeclared identifion 'c'}} + ++c; // expected-error {{use of undeclared identifier 'c'}} } |