www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 22899] New: importC: extra parentheses in sizeof don't give

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

          Issue ID: 22899
           Summary: importC: extra parentheses in sizeof don't give an
                    error with typedef types
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: accepts-invalid, ImportC
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: duser neet.fi

typedef int mytype_t;
void fn()
{
        int x;
        x = sizeof( (mytype_t) ); // no error
        x = sizeof( (int) ); // ok: Error: expression expected, not `int`
}

autoconf configure scripts rely on this being an error when determining if a
type is supported:  
https://github.com/autotools-mirror/autoconf/blob/64df9b4/lib/autoconf/types.m4#L65

--
Mar 18 2022