mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
184 B
C
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;
|
|
}
|