quakeforge/tools/qfcc/test/ptr-array.r
Bill Currie 71c05bd899 Update for the new syntax.
This one compiles to progs even :) (though it looks broken).
2011-02-08 22:39:42 +09:00

13 lines
142 B
R

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