mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
170 B
C
15 lines
170 B
C
// https://issues.dlang.org/show_bug.cgi?id=22894
|
|
|
|
|
|
struct S
|
|
{
|
|
struct S *s;
|
|
int *first;
|
|
int **last;
|
|
};
|
|
struct S my_S =
|
|
{
|
|
&my_S,
|
|
0,
|
|
&my_S.first
|
|
};
|