quakeforge/tools/qfcc/test/calluse.r
Bill Currie 4ec6df385b [qfcc] Fix the calluse tests broken by attributes
Unfortunately, the preproc-1 test is broken (by __VA_OPT__ fixes)
2025-02-17 18:58:08 +09:00

23 lines
242 B
R

@attribute(no_va_list) id func (id self, SEL bar, ...)
{
return (id)1;
}
IMP get_func ()
{
return func;
}
id foo (IMP msg)
{
if (!(msg = get_func ())) {
return nil;
}
return msg(nil, nil);
}
int
main()
{
return foo (nil) == nil;
}