quakeforge/tools/qfcc/test/pointer-param.r

18 lines
203 B
R
Raw Normal View History

2005-06-14 11:29:42 +00:00
@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;
}