xxxxxxxxxx
import std.stdio, std.typecons;
struct Foo
{
Nullable!(char[2]) foo; // static char array is prerequisite
}
struct Bar
{
Nullable!Foo foo;
}
void main(string[] args)
{
Bar bar;
writeln(bar);
bar.foo = Foo();
writeln(bar.foo.isNull); // not null
writeln(bar); // runtime-error
}