The assertion in this program fails:
void main()
{
int[string] stopWords = [ "abc"[]:1 ];
assert("abc" in stopWords);
}
This is so bad I must in fact be doing something wrong...
Comment #1 by snake.scaly — 2008-09-03T02:32:11Z
Even more: this program:
import std.stdio;
void main()
{
int[string] foo = ["aaa":1, "bbb":2];
foo["ccc"] = 3;
writeln(foo);
writeln("aaa" in foo);
writeln("ccc" in foo);
}
prints this:
[aaa:1,bbb:2,ccc:3]
0
8F4FB4
when compiled using Windows DMD 2.018.
Comment #2 by gide — 2008-09-03T06:41:38Z
The docs says 'An AssocArrayLiteral cannot be used to statically initialize anything', so the code should be rejected by the compiler. Changed keyword to acepts-invalid.
http://www.digitalmars.com/d/2.0/expression.html#AssocArrayLiteral
BTW I've made the same mistake, see BUG 1727.
Comment #3 by andrei — 2008-09-03T07:14:03Z
(In reply to comment #1)
> Even more: this program:
>
> import std.stdio;
> void main()
> {
> int[string] foo = ["aaa":1, "bbb":2];
> foo["ccc"] = 3;
> writeln(foo);
> writeln("aaa" in foo);
> writeln("ccc" in foo);
> }
>
> prints this:
>
> [aaa:1,bbb:2,ccc:3]
> 0
> 8F4FB4
>
> when compiled using Windows DMD 2.018.
The last line is fine. "in" returns a pointer.
Comment #4 by andrei — 2008-09-03T07:14:44Z
(In reply to comment #2)
> The docs says 'An AssocArrayLiteral cannot be used to statically initialize
> anything', so the code should be rejected by the compiler. Changed keyword to
> acepts-invalid.
> http://www.digitalmars.com/d/2.0/expression.html#AssocArrayLiteral
>
> BTW I've made the same mistake, see BUG 1727.
Notice that I'm using straight initialization, not static initialization.
Comment #5 by gide — 2008-09-03T07:57:16Z
In that case my comment on bug 1727 was valid, I'll repeat it here. The following code compiles on both GDC and DMD, but DMD compiled code throws an array bounds exception when executed.
test.d
------
import std.stdio;
void main() {
int[char[]] aa = ["aa":1, "bb":2, "cc":3]; // Fails later
//int[char[]] aa; aa = ["aa":1, "bb":2, "cc":3]; // Fails later
//int[char[]] aa; aa["aa"] = 1; aa["bb"] = 2; aa["cc"] = 3; // OK
assert(aa.length == 3);
assert(aa["aa"]==1); // DMD fails here. Error: ArrayBoundsError test(9)
writefln(aa["aa"],aa["bb"],aa["cc"]); // On GDC output -> 123
}
Comment #6 by snake.scaly — 2008-09-03T10:33:42Z
(In reply to comment #3)
> (In reply to comment #1)
> > [aaa:1,bbb:2,ccc:3]
> > 0
> > 8F4FB4
>
> The last line is fine. "in" returns a pointer.
I know. I posted this to maybe help to narrow down the issue. The printed array contents are correct. The explicitly added key ("ccc") is found correctly. But, at the same time, the key "aaa" is not found even though it seems to be present in the AA.
Comment #7 by bugzilla — 2008-10-20T22:22:27Z
Fixed dmd 2.020
Comment #8 by gide — 2008-11-18T18:43:50Z
*** Bug 2265 has been marked as a duplicate of this bug. ***