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

Walter Bright <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Walter Bright <[email protected]> ---
A simpler test case:

  import core.stdc.stdio;
  import mod;

  struct S
  {
    cstruct b;
    ulong y = 0x1234_0000_5678;
  }

  void main()
  {
    S s;
    printf("%llx\n", s.y);
  }

prints 567800000000

--

Reply via email to