quakeforge/tools/qfcc/test/old/pointer-param.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

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;
}