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