xxxxxxxxxx
import std.stdio;
void main() @safe
{
string foo = "foo";
string* p1, p2;
string*[] ls;
ls ~= &foo;
p1 = ls[0];
ls.destroy();
p2 = ls[0];
writeln(p2);
}