[Issue 3951] New: [CTFE] With a fixed-size array
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Mar 13 04:55:47 PST 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3951
Summary: [CTFE] With a fixed-size array
Product: D
Version: 2.041
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 2010-03-13 04:55:46 PST ---
I can't invent a good name for this bug.
This looks valid CTFE code, but it doesn't compile:
int foo1(int n)(int[n] array) {
foreach (el; array) {}
return 0;
}
int foo2(int n)(int[n] array) {
for (int i; i < n; i++) {
int el = array[i];
}
return 0;
}
int spam() {
int[1] array;
enum int i1 = foo1(array);
enum int i2 = foo2(array);
return 0;
}
enum int r = spam();
void main() {}
Errors produced:
test.d(12): Error: cannot cast int to int[]
test.d(12): Error: cannot cast int to int[]
test.d(12): Error: cannot cast int to int[]
test.d(13): Error: cannot evaluate foo1(array) at compile time
test.d(13): Error: cannot evaluate foo1(array) at compile time
--
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