Open
Description
At module scope variable declarations only have constant initializers.
To support auto seed = unpredictableSeed()
the corresponding module should be rewritten like so.
module _mod2;
import _mod0, _mod1;
typeof(unpredictableSeed()) seed;
shared static this()
{
seed = unpredictableSeed();
}