[cfe-commits] r89875 - /cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp

Douglas Gregor dgregor at apple.com
Wed Nov 25 11:25:39 PST 2009


Author: dgregor
Date: Wed Nov 25 13:25:39 2009
New Revision: 89875

URL: http://llvm.org/viewvc/llvm-project?rev=89875&view=rev
Log:
Tweak expected error message, although we still fail this test

Modified:
    cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp

Modified: cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp?rev=89875&r1=89874&r2=89875&view=diff

==============================================================================
--- cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp (original)
+++ cfe/trunk/test/CXX/basic/basic.lookup/basic.lookup.unqual/p15.cpp Wed Nov 25 13:25:39 2009
@@ -13,5 +13,5 @@
 
 } 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'}}
 }





More information about the cfe-commits mailing list