[Issue 6545] New: [CTFE] Array operations problem
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Aug 23 02:09:21 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6545
Summary: [CTFE] Array operations problem
Product: D
Version: D2
Platform: x86
OS/Version: Windows
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: bearophile_hugs at eml.cc
--- Comment #0 from bearophile_hugs at eml.cc 2011-08-23 02:08:53 PDT ---
This is a spinoff of bug 6511 See there for more details.
This D2 code:
T foo(T)() {
T[1] a = [1];
a[] += a[];
return a[0];
}
static assert(foo!int() == 2); // error
void main() {}
DMD 2.055beta gives:
test.d(3): Error: _arraySliceSliceAddass_i cannot be interpreted at compile
time, because it has no available source code
test.d(6): Error: cannot evaluate foo() at compile time
test.d(6): Error: static assert (foo() == 2) is not evaluatable at compile
time
This behaviour difference between long and int is not good.
Part of a comment by Don:
> the array operations which are special-cased in the
> runtime don't have special case treatment in the CTFE engine, since CTFE
> doesn't have access to the source code of druntime. The array ops which aren't
> special-cased don't use druntime code, so they should all work.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list