xref: /llvm-project/clang/test/ARCMT/Inputs/test1.m.in (revision 85230d50f2ebe14b4c7cffb2c4d213398baed1cf)
1#define PART1
2#include "test.h"
3
4void test1(id p) {
5  [p release];
6}
7
8@interface Test2
9@property (strong) id prop;
10@end
11
12@implementation Test2
13-(id)init {
14  _prop = 0;
15}
16@end
17