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

15 lines
234 B
C

// https://issues.dlang.org/show_bug.cgi?id=22705
Ta *pa;
struct Sa { int x; };
typedef struct Sa Ta;
Tb *pb;
struct Sb;
typedef struct Sb { int x; } Tb;
struct S1;
struct S2 { int x; };
typedef struct S2 T;
struct S1 { T* pc; };