https://issues.dlang.org/show_bug.cgi?id=19584
Suleyman Sahmi (سليمان السهمي) <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Suleyman Sahmi (سليمان السهمي) <[email protected]> --- Reduced to: ``` void main() { int a = 711; assert(182215 == (a | (a << 8))); assert(182727 == (a * (1 + (1 << 8)))); int b = 31; assert(511 == (b | (b << 4))); assert(527 == (b * (1 + (1 << 4)))); } ``` https://run.dlang.io/is/MjL0NG --
