xxxxxxxxxx
struct S
{
float f;
}
void main()
import std.typecons : Nullable;
alias N = Nullable!(S, S.init);
assert(N(S.init).isNull); // Fails!