0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-22 18:31:27 +00:00

More tests.

This commit is contained in:
Bill Currie 2011-02-13 21:42:08 +09:00
parent 595019d86e
commit e3325b199e

View file

@ -0,0 +1,12 @@
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;
}