From: Douglas Gregor Date: Wed, 25 Nov 2009 19:25:39 +0000 (+0000) Subject: Tweak expected error message, although we still fail this test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abe36e26a5978e14f6e8ed62a47400f1c0ffbb4d;p=clang 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 --- 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'}} }