Comment #0 by verylonglogin.reg — 2013-11-08T22:55:06Z
---
void main()
{
int[int*] aa;
int* k0 = aa.keys[0]; // Error: cannot implicitly convert ... of type const(int)* to int*
foreach(int* k, int v; aa) // Error: foreach: index must be type const(int)*, not int*
{ }
}
---
Comment #1 by robert.schadek — 2024-12-13T18:13:49Z