mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
More tests.
This commit is contained in:
parent
595019d86e
commit
e3325b199e
1 changed files with 12 additions and 0 deletions
12
tools/qfcc/test/local-pointer.r
Normal file
12
tools/qfcc/test/local-pointer.r
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue