blob: 44a3c4cf3d93fc6a5bf8f6f67670a1d5b8d9f3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#define PART1
#include "test.h"
void test1(id p) {
[p release];
}
@interface Test2
@property (strong) id prop;
@end
@implementation Test2
-(id)init {
_prop = 0;
}
@end
|