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 | abe36e26a5978e14f6e8ed62a47400f1c0ffbb4d (patch) | |
tree | 5fcde64e5a21f5786e5a5fca4adafa18c5df9cf3 | |
parent | 51ffb0c9d43b2d3fd210e51ecdd67ba5d1790d70 (diff) |
Tweak expected error message, although we still fail this test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89875 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp b/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp index cebc3e99d0..418059dc74 100644 --- a/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp +++ b/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'}} } |