https://issues.dlang.org/show_bug.cgi?id=14556
--- Comment #2 from ag0aep6g at gmail.com ---
Same problem with static array of void:
----
struct OnlyResult
{
this(int) {}
void[1] data;
}
void main()
{
auto o = OnlyResult(0);
}
----
--