[Issue 12644] Some std.math functions are not yet @nogc
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Sun Apr 27 03:42:18 PDT 2014
https://issues.dlang.org/show_bug.cgi?id=12644
--- Comment #1 from bearophile_hugs at eml.cc ---
Also:
void main() @nogc {
import std.math: log, acos;
auto x1 = log(2.2);
auto x2 = acos(0.0);
}
--
More information about the Digitalmars-d-bugs
mailing list