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

Mathias Lang <[email protected]> changed:

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

--- Comment #6 from Mathias Lang <[email protected]> ---
intrinsic have been moved to `core.math` and `std.math` nowadays (since 2.069 /
https://github.com/dlang/phobos/pull/3599 ) provide wrappers around it to
mitigate the issue.

In order to reproduce this, one can use:

import core.math;
void main() {
    real function(real) c = &sin;
}

instead of the op's code.

--

Reply via email to