[cfe-commits] r164079 - /cfe/trunk/test/SemaObjC/warning-missing-selector-name.m

Fariborz Jahanian fjahanian at apple.com
Mon Sep 17 16:24:36 PDT 2012


Author: fjahanian
Date: Mon Sep 17 18:24:36 2012
New Revision: 164079

URL: http://llvm.org/viewvc/llvm-project?rev=164079&view=rev
Log:
objective-C: add Doug's test for my last patch.

Modified:
    cfe/trunk/test/SemaObjC/warning-missing-selector-name.m

Modified: cfe/trunk/test/SemaObjC/warning-missing-selector-name.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/warning-missing-selector-name.m?rev=164079&r1=164078&r2=164079&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/warning-missing-selector-name.m (original)
+++ cfe/trunk/test/SemaObjC/warning-missing-selector-name.m Mon Sep 17 18:24:36 2012
@@ -12,9 +12,14 @@
 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3; // expected-warning {{'Name3' used as the name of the previous parameter rather than as part of the selector}} \
 				   // expected-note {{introduce a parameter name to make 'Name3' part of the selector}} \
 				   // expected-note {{or insert whitespace before ':' to use 'Name3' as parameter name and have an empty entry in the selector}}
+- method:(id) second:(id)second; // expected-warning {{'second' used as the name of the previous parameter rather than as part of the selector}} \
+				   // expected-note {{introduce a parameter name to make 'second' part of the selector}} \
+				   // expected-note {{or insert whitespace before ':' to use 'second' as parameter name and have an empty entry in the selector}} \
+				   // expected-note {{method definition for 'method::' not found}}
+                                 
 @end
 
- at implementation INTF
+ at implementation INTF // expected-warning {{incomplete implementation}}
 -(void) Name1:(id)Arg1 Name2:(id)Arg2{}
 -(void) Name1:(id) Name2:(id)Arg2 {} // expected-warning {{'Name2' used as the name of the previous parameter rather than as part of the selector}} \
 					// expected-note {{introduce a parameter name to make 'Name2' part of the selector}} \
@@ -23,4 +28,5 @@
 -(void) Name1:(id)Arg1 Name2:(id) Name3:(id)Arg3 {} // expected-warning {{'Name3' used as the name of the previous parameter rather than as part of the selector}} \
 					// expected-note {{introduce a parameter name to make 'Name3' part of the selector}} \
  					// expected-note {{or insert whitespace before ':' to use 'Name3' as parameter name and have an empty entry in the selector}}
+- method:(id)first second:(id)second {return 0; }
 @end





More information about the cfe-commits mailing list