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