[cfe-commits] r117381 - /cfe/trunk/test/FixIt/typo.m

Douglas Gregor dgregor at apple.com
Tue Oct 26 11:25:19 PDT 2010


Author: dgregor
Date: Tue Oct 26 13:25:19 2010
New Revision: 117381

URL: http://llvm.org/viewvc/llvm-project?rev=117381&view=rev
Log:
Something is seriously wonky with this test

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

Modified: cfe/trunk/test/FixIt/typo.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/typo.m?rev=117381&r1=117380&r2=117381&view=diff
==============================================================================
--- cfe/trunk/test/FixIt/typo.m (original)
+++ cfe/trunk/test/FixIt/typo.m Tue Oct 26 13:25:19 2010
@@ -157,8 +157,12 @@
 }
 
 #ifdef NON_FIXITS
- at implementation Sub2
-- (int)method2 {
+ at interface Sub3 : Super
+- (int)method3;
+ at end
+
+ at implementation Sub3
+- (int)method3 {
   int x = super; // expected-note{{use of undeclared identifier 'super'; did you mean 'Super'?}}
   return 0;
 }





More information about the cfe-commits mailing list