https://issues.dlang.org/show_bug.cgi?id=12835
--- Comment #1 from Joseph Rushton Wakeling <[email protected]> --- If we look at the problematic line in the _old_ std.random (i.e. before PR 1717 was merged), we have the following: ResultType min = cast(ResultType) a + 1; I'm presuming that this is probably simply a typo and that line should read, ResultType min = cast(ResultType) (a + 1); .... ? --
