[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / ARCMT / designated-init-in-header / file2.m.in
blob258159735a77f59018e1aec53bd01869f8b65d73
1 #include "header1.h"
3 @implementation S1
4 -(int)prop { return 0; }
5 -(void)setProp:(int)p {}
6 +(id)s1 { return 0; }
7 -(id)initWithFoo:(NSString*)foo
9 self = [super init];
10 if (self) {
12 return self;
14 @end