Consider this code:
```
struct Test
{
string to;
void test()
{
import core.time;
auto value = ["to": to]; // Error: can't have associative array
of void
}
}
void main() {}
```
In 2.068.0 compilation fails. Works in 2.065 and 2.067.1.
