May 05, 2023
https://issues.dlang.org/show_bug.cgi?id=23887

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ImportC
           See Also|                            |https://issues.dlang.org/sh
                   |                            |ow_bug.cgi?id=23884

--
May 11, 2023
https://issues.dlang.org/show_bug.cgi?id=23887

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
This works:

#include <stdio.h>

enum E { A = 4294967296LU };

int main()
{
    printf("%llu\n", A);
    return 0;
}

in the current master.

--