[Issue 12805] New: @nogc std.range.iota(FP)
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Mon May 26 05:14:43 PDT 2014
https://issues.dlang.org/show_bug.cgi?id=12805
Issue ID: 12805
Summary: @nogc std.range.iota(FP)
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: rejects-valid
Severity: enhancement
Priority: P1
Component: Phobos
Assignee: nobody at puremagic.com
Reporter: bearophile_hugs at eml.cc
void main() @nogc {
import std.range: iota;
foreach (x; iota(5.0)) {}
}
test.d(3,21): Error: @nogc function 'D main' cannot call non- at nogc function
'std.range.iota!double.iota'
--
More information about the Digitalmars-d-bugs
mailing list