[cfe-commits] r107194 - /cfe/trunk/test/FixIt/typo.cpp

Douglas Gregor dgregor at apple.com
Tue Jun 29 12:17:14 PDT 2010


Author: dgregor
Date: Tue Jun 29 14:17:14 2010
New Revision: 107194

URL: http://llvm.org/viewvc/llvm-project?rev=107194&view=rev
Log:
Fix broken testcase

Modified:
    cfe/trunk/test/FixIt/typo.cpp

Modified: cfe/trunk/test/FixIt/typo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/typo.cpp?rev=107194&r1=107193&r2=107194&view=diff
==============================================================================
--- cfe/trunk/test/FixIt/typo.cpp (original)
+++ cfe/trunk/test/FixIt/typo.cpp Tue Jun 29 14:17:14 2010
@@ -13,7 +13,7 @@
 }
 
 namespace otherstd { // expected-note 2{{'otherstd' declared here}} \
-                     // expected-note 2{{namespace 'otherstd' defined here}}
+                     // expected-note{{namespace 'otherstd' defined here}}
   using namespace std;
 }
 
@@ -31,7 +31,7 @@
 }
 
 using namespace othestd; // expected-error{{no namespace named 'othestd'; did you mean 'otherstd'?}}
-namespace blargh = otherstd; // expected-note 2{{namespace 'blargh' defined here}}
+namespace blargh = otherstd; // expected-note 3{{namespace 'blargh' defined here}}
 using namespace ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
 
 namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}





More information about the cfe-commits mailing list