struct S
{
int i;
}
S[char[]] aa;
void main() {
aa["test"].i = 10;
}Error: ArrayBoundsError D1.046 looks like a bug to me or can't structs be aa's?
struct S
{
int i;
}
S[char[]] aa;
void main() {
aa["test"].i = 10;
}Error: ArrayBoundsError D1.046 looks like a bug to me or can't structs be aa's?