blob: e4496bf6edebac9bb28b4f1c552efe540da2e6c5 [file] [log] [blame]
typedef struct
{
void *p;
} *S;
@protocol O
- (unsigned)j;
@end
@interface I
+ (unsigned char)T:(S<O>[2])p v:(S<O>)h;
@end
@implementation I
+ (unsigned char)T:(S<O>[2])p v:(S<O>)h
{
p[0] = (S) 0;
p[1] = (S) 0;
return 0;
}
@end