[Issue 23720] New: runnable/test22513.c:16:12: error: invalid use of undefined type ‘struct S’
    d-bugmail at puremagic.com 
    d-bugmail at puremagic.com
       
    Wed Feb 15 17:52:11 UTC 2023
    
    
  
https://issues.dlang.org/show_bug.cgi?id=23720
          Issue ID: 23720
           Summary: runnable/test22513.c:16:12: error: invalid use of
                    undefined type ‘struct S’
           Product: D
           Version: D2
          Hardware: All
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P1
         Component: dmd
          Assignee: nobody at puremagic.com
          Reporter: ibuclaw at gdcproject.org
When compiling the test with `gcc -std=c11 -fsyntax-only`
runnable/test22513.c:16:12: error: invalid use of undefined type ‘struct S’
   16 | int* p = &s.t.x;
      |            ^
Original test:
```
struct S s;
int* p = &s.t.x;
struct S { int a; struct T t; };
```
--
    
    
More information about the Digitalmars-d-bugs
mailing list