0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-06 09:21:50 +00:00
quakeforge/tools/qfcc/test/pointer-param.r
2005-06-14 11:29:42 +00:00

17 lines
203 B
R

@interface foo
-(integer)bar:(integer [])baz;
@end
@implementation foo
-(integer)bar:(integer [])blah
{
return blah[1];
}
@end
integer (integer x) bletch;
integer (integer y) bletch =
{
return y;
}