dmd/compiler/test/compilable/test22929.c
2022-07-09 18:53:07 +02:00

8 lines
187 B
C

// https://issues.dlang.org/show_bug.cgi?id=22929
extern int xs[];
void fn() { void *xp = &(xs[0]); }
struct S { char text[4]; };
extern struct S ops[];
char *args[] = { ops[1].text };