minix/external/bsd/llvm/dist/clang/test/Rewriter/protocol-rewrite-1.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

48 lines
716 B
Objective-C

// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
typedef struct MyWidget {
int a;
} MyWidget;
MyWidget gWidget = { 17 };
@protocol MyProto
- (MyWidget *)widget;
@end
@interface Foo
@end
@interface Bar: Foo <MyProto>
@end
@interface Container
+ (MyWidget *)elementForView:(Foo *)view;
@end
@implementation Foo
@end
@implementation Bar
- (MyWidget *)widget {
return &gWidget;
}
@end
@implementation Container
+ (MyWidget *)elementForView:(Foo *)view
{
MyWidget *widget = (void*)0;
if (@protocol(MyProto)) {
widget = [(id <MyProto>)view widget];
}
return widget;
}
@end
int main(void) {
id view;
MyWidget *w = [Container elementForView: view];
return 0;
}