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

13 lines
184 B
C

// https://issues.dlang.org/show_bug.cgi?id=22757
typedef struct S S;
struct T {
int x;
};
struct S {
struct T *pChunk;
};
void foo(struct S pS){
void *p = &pS.pChunk;
}