https://issues.dlang.org/show_bug.cgi?id=24130
--- Comment #3 from anonymous4 <[email protected]> --- I have this code around that line: __inline ULONGLONG NTAPI Int64ShrlMod32 ( _In_ ULONGLONG Value, _In_ DWORD ShiftCount ) { __asm { mov ecx, ShiftCount mov eax, dword ptr [Value] mov edx, dword ptr [Value+4] shrd eax, edx, cl shr edx, cl } } So D complains about absence of semicolon after the asm statement. --
