xref: /minix3/external/bsd/llvm/dist/clang/test/ARCMT/designated-init-in-header/file2.m.in.result (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#include "header1.h"
2*0a6a1f1dSLionel Sambuc
3*0a6a1f1dSLionel Sambuc@implementation S1
4*0a6a1f1dSLionel Sambuc-(int)prop { return 0; }
5*0a6a1f1dSLionel Sambuc-(void)setProp:(int)p {}
6*0a6a1f1dSLionel Sambuc+(instancetype)s1 { return 0; }
7*0a6a1f1dSLionel Sambuc-(instancetype)initWithFoo:(NSString*)foo
8*0a6a1f1dSLionel Sambuc{
9*0a6a1f1dSLionel Sambuc  self = [super init];
10*0a6a1f1dSLionel Sambuc  if (self) {
11*0a6a1f1dSLionel Sambuc  }
12*0a6a1f1dSLionel Sambuc  return self;
13*0a6a1f1dSLionel Sambuc}
14*0a6a1f1dSLionel Sambuc@end
15