Comment #0 by john.loughran.colvin — 2016-02-10T12:02:12Z
% cat test.d
alias AliasSeq(A ...) = A;
void foo()
{
AliasSeq!int a;
a[a];
}
% dmd test.d
test.d(5): Error: variable __a_field_0 cannot be read at compile time
The incorrect usage is actually at line 6.