[Issue 23697] ImportC: No examples of invalid forward references in C code accepted by ImportC

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Feb 20 12:41:46 UTC 2023


https://issues.dlang.org/show_bug.cgi?id=23697

--- Comment #6 from Iain Buclaw <ibuclaw at gdcproject.org> ---
Missing definition of `T` in second example:
```
struct S s;
int* p = &s.t.x;
struct S { int a; struct T t; };
struct T { int b; int x; };
```

--


More information about the Digitalmars-d-bugs mailing list