[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / ARCMT / designated-init-in-header / file2.m.in.result
blob7465ed576f5ff98438235cf606ded6cb0357ae37
1 #include "header1.h"
3 @implementation S1
4 -(int)prop { return 0; }
5 -(void)setProp:(int)p {}
6 +(instancetype)s1 { return 0; }
7 -(instancetype)initWithFoo:(NSString*)foo 
9   self = [super init];
10   if (self) {
11   }
12   return self;
14 @end