mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
187 B
C
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 };
|