www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 22160] New: importC: Error: redeclaring `module test` as

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

          Issue ID: 22160
           Summary: importC: Error: redeclaring `module test` as `struct
                    test`
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: critical
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: ibuclaw gdcproject.org

This compiles:
---
/* test.c */
struct test;
typedef struct test test;
---

This doesn't:
---
/* test.c */
typedef struct test test;
---

Both programs should be considered the same.

--
Jul 30 2021