[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / FixIt / fixit-multiple-selector-warnings.m
blob4b9ff7b3a1842822768bf7aa74b2e2b0c45675ee
1 /* RUN: cp %s %t
2    RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -fixit %t
3    RUN: %clang_cc1 -x objective-c -Wselector-type-mismatch -Werror %t
4 */
5 // rdar://16458579
7 @interface I
8 - (id) compare: (char) arg1;
9 - length;
10 @end
12 @interface J
13 - (id) compare: (id) arg1;
14 @end
16 SEL func(void)
18         (void)@selector( compare: );
19         (void)@selector (compare:);
20         (void)@selector( compare:);
21         (void)@selector(compare: );
22         (void)@selector ( compare: );
23         return @selector(compare:);