[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Rewriter / func-in-impl.m
blob9c4a159364f4cfc859bd71b95d20c87079a36246
1 // RUN: %clang_cc1 -E %s -o %t.m
2 // RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -rewrite-objc %t.m -o - | FileCheck %s
4 @interface I {
5   id _delegate;
7 -(void)foo;
8 @end
10 @implementation I
12 static void KKKK(int w);
14 -(void) foo {
15   KKKK(0);
18 static void KKKK(int w) {
19   I *self = (I *)0;
20   if ([self->_delegate respondsToSelector:@selector(handlePortMessage:)]) {
21   }
24 -(void) foo2 {
25   KKKK(0);
28 @end
30 // CHECK: if (((id (*)(id, SEL, ...))(void *)objc_msgSend)((id)((struct I_IMPL *)self)->_delegate, sel_registerName("respondsToSelector:"), sel_registerName("handlePortMessage:")))