quakeforge/tools/qfcc/test/old/ptr-array.r
Bill Currie 49ca09a64f Clean up qfcc's test directory.
I don't remember what half these tests were for :/
2012-11-22 21:58:52 +09:00

13 lines
142 B
R

@interface foo
{
unsigned count;
id *_objs;
}
@end
@implementation foo
- (void) foofoo: (id) anObject
{
_objs[count++] = anObject;
}
@end