26 lines
497 B
Mathematica
26 lines
497 B
Mathematica
|
/* RUN: cp %s %t
|
||
|
RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -fixit %t
|
||
|
RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -Werror %t
|
||
|
*/
|
||
|
|
||
|
@interface I
|
||
|
- (id) compare: (char) arg1;
|
||
|
- length;
|
||
|
@end
|
||
|
|
||
|
@interface J
|
||
|
- (id) compare: (id) arg1;
|
||
|
@end
|
||
|
|
||
|
SEL func(void)
|
||
|
{
|
||
|
(void)@selector( compare: );
|
||
|
(void)@selector (compare:);
|
||
|
(void)@selector( compare:);
|
||
|
(void)@selector(compare: );
|
||
|
(void)@selector ( compare: );
|
||
|
return @selector(compare:);
|
||
|
}
|
||
|
|
||
|
|