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

13 lines
205 B
R
Raw Normal View History

2011-02-13 12:42:08 +00:00
struct list_bucket_s {
struct list_bucket_s *next;
struct list_bucket_s **prev;
id obj;
};
typedef struct list_bucket_s list_bucket_t;
id d (void)
{
local list_bucket_t *e, *t = nil;
return e.obj;
}