void main() {
int[][string] aarr;
aarr["key"].length++;
}
Compilation fails:
../probe/bug_aaget.d(3): Error: declaration `bug_aaget.main.__aaget3` is already defined
aarr["key"].length++;
^
../probe/bug_aaget.d(3): `variable` `__aaget3` is defined here
aarr["key"].length++;
^
Version 2.111.0 didn't have this fail. Unfortunately, the ldc2 and gdc compilers were too quick to incorporate the changes from 2.112+.
Compilation fails:
Version 2.111.0 didn't have this fail. Unfortunately, the ldc2 and gdc compilers were too quick to incorporate the changes from 2.112+.