Comment #0 by thomas.bockman — 2017-05-15T19:21:46Z
core.checkedint is broken with dmd master (2.075):
void main()
{
import core.checkedint;
size_t a, b;
bool over;
addu(a, b, over);
}
The above program fails to compile in release mode:
Error: function core.checkedint.addu cannot inline function
Comment #1 by dlang-bugzilla — 2017-05-16T06:08:16Z
(In reply to thomas.bockman from comment #0)
> The above program fails to compile in release mode:
(here "in release mode" means with -inline)
Comment #2 by dlang-bugzilla — 2017-05-16T06:14:24Z