Re: Bug after local import statement?

2018-03-07 Thread Mike Franklin via D.gnu
On Wednesday, 7 March 2018 at 12:49:30 UTC, berni wrote: The following code compiles with ldc/dmd but not with gdc: cat test.d void main() { int[] count; { import std.string; ++count[3]; } } gdc test.d test.d:8:16: error: only one index allowed to index void

Bug after local import statement?

2018-03-07 Thread berni via D.gnu
The following code compiles with ldc/dmd but not with gdc: cat test.d void main() { int[] count; { import std.string; ++count[3]; } } gdc test.d test.d:8:16: error: only one index allowed to index void ++count[3]; ^ gdc --version gdc